-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
84 lines (77 loc) · 2.19 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3'
services:
nginx:
image: nginx
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
container_name: nginx
restart: always
ports:
- 80:80
- 443:443
volumes:
- ${NGINX_FILES_PATH}/conf.d:/etc/nginx/conf.d
- ${NGINX_FILES_PATH}/vhost.d:/etc/nginx/vhost.d
- ${NGINX_FILES_PATH}/html:/usr/share/nginx/html
- ${NGINX_FILES_PATH}/certs:/etc/nginx/certs:ro
- /var/log/nginx:/var/log/nginx
networks:
- nginx_proxy
nginx_gen:
image: jwilder/docker-gen
command: -notify-sighup nginx -watch -wait 5s:30s /etc/docker-gen/templates/nginx.tmpl /etc/nginx/conf.d/default.conf
container_name: nginx_gen
restart: always
volumes:
- ${NGINX_FILES_PATH}/conf.d:/etc/nginx/conf.d
- ${NGINX_FILES_PATH}/vhost.d:/etc/nginx/vhost.d
- ${NGINX_FILES_PATH}/html:/usr/share/nginx/html
- ${NGINX_FILES_PATH}/certs:/etc/nginx/certs:ro
- /var/run/docker.sock:/tmp/docker.sock:ro
- ./templates/nginx.tmpl:/etc/docker-gen/templates/nginx.tmpl:ro
networks:
- nginx_proxy
nginx_letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion
container_name: nginx_letsencrypt
restart: always
volumes:
- ${NGINX_FILES_PATH}/conf.d:/etc/nginx/conf.d
- ${NGINX_FILES_PATH}/vhost.d:/etc/nginx/vhost.d
- ${NGINX_FILES_PATH}/html:/usr/share/nginx/html
- ${NGINX_FILES_PATH}/certs:/etc/nginx/certs:rw
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
NGINX_DOCKER_GEN_CONTAINER: nginx_gen
NGINX_PROXY_CONTAINER: nginx
networks:
- nginx_proxy
duic:
image: zhudyos/duic
environment:
- VIRTUAL_HOST=duic.zhudy.io
- VIRTUAL_NETWORK=nginx_proxy
- VIRTUAL_PORT=7777
- LETSENCRYPT_HOST=duic.zhudy.io
volumes:
- ./config:/app/config
networks:
- nginx_proxy
- backend
depends_on:
- mongo
mongo:
image: mongo
container_name: mongo
volumes:
- mongo_data:/data/db
networks:
- backend
volumes:
mongo_data:
networks:
nginx_proxy:
external:
name: nginx_proxy
backend: