mirror of
https://github.com/ArcticFoxes-net/Signal-TLS-Proxy
synced 2024-11-08 13:21:34 -05:00
25 lines
710 B
YAML
25 lines
710 B
YAML
version: '3'
|
|
|
|
services:
|
|
nginx-terminate:
|
|
image: nginx:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data/nginx-terminate/nginx.conf:/etc/nginx/nginx.conf:Z
|
|
- ./data/certbot/conf:/etc/letsencrypt:Z
|
|
- ./data/certbot/www:/var/www/certbot:Z
|
|
ports:
|
|
- "443:443"
|
|
nginx-relay:
|
|
image: nginx:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data/nginx-relay/nginx.conf:/etc/nginx/nginx.conf:Z
|
|
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;'"
|