Skip to content

Commit f527bfb

Browse files
committed
Added readme
1 parent 7a1633e commit f527bfb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,24 @@ The following environment variables can be used to customize the Certbot contain
5757

5858
3. The container will automatically generate and renew the certificate.
5959

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+
6078
## Resources
6179
- **[Discord](https://serversideup.net/discord)** for friendly support from the community and the team.
6280
- **[GitHub](https://github.com/serversideup/docker-certbot-dns-cloudflare)** for source code, bug reports, and project management.

0 commit comments

Comments
 (0)