Files
dns-wildcard-cert/docker-compose.yml
Chris d46b0664d3
All checks were successful
Build Container / docker (push) Successful in 19m18s
init
2026-01-03 20:00:52 +01:00

22 lines
417 B
YAML

version: '3.8'
services:
certbot:
build: .
ports:
- "53:53/tcp"
- "53:53/udp"
environment:
- EMAIL=youremail@example.com
- DOMAINS=-d example.com -d *.example.com
# Set to true for testing
- STAGING=false
- DRY_RUN=false
volumes:
- letsencrypt:/etc/letsencrypt
- letsencrypt-lib:/var/lib/letsencrypt
volumes:
letsencrypt:
letsencrypt-lib: