docker/docker-compose.https.yml

16 lines
358 B
YAML
Raw Normal View History

2020-04-13 15:43:37 +02:00
version: '3.6'
services:
https_proxy:
image: valian/docker-nginx-auto-ssl
2020-06-06 20:06:28 +02:00
restart: unless-stopped
2020-04-13 15:43:37 +02:00
volumes:
- ssl_data:/etc/resty-auto-ssl
2020-07-30 12:12:36 +02:00
- ./mod/https/${HTTPS_SITE_FILE}:/etc/nginx/conf.d/bbb-docker.conf
2020-04-13 15:43:37 +02:00
environment:
ALLOWED_DOMAINS: ${CERTIFICATE_DOMAINS}
2020-07-13 17:22:31 +02:00
network_mode: host
2020-04-13 15:43:37 +02:00
volumes:
ssl_data:
2020-06-07 13:58:56 +02:00
name: ssl_data