init
All checks were successful
Build Container / docker (push) Successful in 19m18s

This commit is contained in:
2026-01-03 20:00:52 +01:00
commit d46b0664d3
6 changed files with 338 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
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: