mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
43 lines
918 B
YAML
43 lines
918 B
YAML
|
version: '2.1'
|
||
|
|
||
|
services:
|
||
|
nginx:
|
||
|
image: nginx:alpine
|
||
|
container_name: nginx
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 80:80
|
||
|
- 443:443
|
||
|
volumes:
|
||
|
- conf:/etc/nginx/conf.d
|
||
|
- vhost:/etc/nginx/vhost.d
|
||
|
- html:/usr/share/nginx/html
|
||
|
- certs:/etc/nginx/certs
|
||
|
|
||
|
dockergen:
|
||
|
image: poma/docker-gen
|
||
|
container_name: dockergen
|
||
|
restart: always
|
||
|
command: -notify-sighup nginx -watch /etc/docker-gen/templates/nginx.tmpl /etc/nginx/conf.d/default.conf
|
||
|
# environment:
|
||
|
# NGINX_CLIENT_MAX_BODY_SIZE: 30M
|
||
|
volumes_from:
|
||
|
- nginx
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||
|
|
||
|
letsencrypt:
|
||
|
image: jrcs/letsencrypt-nginx-proxy-companion
|
||
|
container_name: letsencrypt
|
||
|
restart: always
|
||
|
environment:
|
||
|
NGINX_DOCKER_GEN_CONTAINER: dockergen
|
||
|
volumes_from:
|
||
|
- nginx
|
||
|
- dockergen
|
||
|
volumes:
|
||
|
conf:
|
||
|
vhost:
|
||
|
html:
|
||
|
certs:
|