You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,24 @@ The following environment variables can be used to customize the Certbot contain
57
57
58
58
3. The container will automatically generate and renew the certificate.
59
59
60
+
### Works great for orchestrated deployments
61
+
We designed this image to work great in orchestrated deployments like Kubernetes, Docker Swarm, or even in Github Actions. Look how simple the syntax is:
62
+
63
+
```yaml
64
+
certbot:
65
+
image: serversideup/certbot-dns-cloudflare
66
+
volumes:
67
+
- certbot_data:/etc/letsencrypt
68
+
environment:
69
+
CLOUDFLARE_API_TOKEN: "${CLOUDFLARE_API_TOKEN}"
70
+
CERTBOT_EMAIL: "${CERTBOT_EMAIL}"
71
+
CERTBOT_DOMAIN: "${CERTBOT_DOMAIN}"
72
+
CERTBOT_KEY_TYPE: "rsa"
73
+
74
+
volumes:
75
+
certbot_data:
76
+
```
77
+
60
78
## Resources
61
79
- **[Discord](https://serversideup.net/discord)** for friendly support from the community and the team.
62
80
- **[GitHub](https://github.com/serversideup/docker-certbot-dns-cloudflare)** for source code, bug reports, and project management.
0 commit comments