Files
Snake/docker-compose.yaml
2025-12-17 11:37:09 +01:00

36 lines
667 B
YAML

version: "3.8"
services:
app:
build: ./app
volumes:
- ./app:/usr/share/nginx/html
expose:
- "80"
nginx:
image: nginx:alpine
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./certbot/www:/var/www/certbot
- ./certbot/conf:/etc/letsencrypt
depends_on:
- app
restart: always
certbot:
image: certbot/certbot
volumes:
- ./certbot/www:/var/www/certbot
- ./certbot/conf:/etc/letsencrypt
entrypoint: >
sh -c "trap exit TERM;
while :; do
certbot renew;
sleep 12h & wait $${!};
done"