2021-01-28 13:34:53 -05:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
nginx-terminate:
|
|
|
|
build: ./nginx-terminate/
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./data/nginx-terminate:/etc/nginx/conf.d
|
|
|
|
- ./data/certbot/conf:/etc/letsencrypt
|
|
|
|
- ./data/certbot/www:/var/www/certbot
|
|
|
|
ports:
|
|
|
|
- "443:443"
|
2022-09-22 15:40:24 -04:00
|
|
|
- "80:80"
|
2021-01-28 13:34:53 -05:00
|
|
|
command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; /opt/nginx/sbin/nginx -s reload; done & /opt/nginx/sbin/nginx -c /etc/nginx/conf.d/nginx.conf -g \"daemon off;\"'"
|
|
|
|
nginx-relay:
|
|
|
|
build: ./nginx-relay/
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./data/nginx-relay:/etc/nginx/conf.d
|
|
|
|
command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; /opt/nginx/sbin/nginx -s reload; done & /opt/nginx/sbin/nginx -c /etc/nginx/conf.d/nginx.conf -g \"daemon off;\"'"
|
|
|
|
certbot:
|
|
|
|
image: certbot/certbot
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./data/certbot/conf:/etc/letsencrypt
|
|
|
|
- ./data/certbot/www:/var/www/certbot
|
|
|
|
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
|