We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da33e51 commit b960a03Copy full SHA for b960a03
examples/docker-compose.yml
@@ -12,6 +12,9 @@ services:
12
entrypoint: certbot
13
command: >
14
certonly
15
+ --agree-tos
16
+ --non-interactive
17
+ --email dns@${DOMAIN}
18
--authenticator dns-stackit
19
--dns-stackit-credentials /stackit.ini
20
--dns-stackit-propagation-seconds 60
examples/readme.md
@@ -35,4 +35,11 @@ WILDCARD=*.example.com
35
### 3. Run Certbot
36
```
37
docker compose up certbot
38
+```
39
+
40
+### 4. Cert permission
41
42
+The certs and the live folder will be `root:root`, in order to access them with your user
43
+```bash
44
+sudo chown -R $(id -u):$(id -g) ./letsencrypt
45
0 commit comments