forked from evertramos/nginx-proxy-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
76 lines (72 loc) · 2.57 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
version: '3'
# Last tested 14.02.2020 - working with nginx:1.17.8, Docker version 19.03.5, docker-compose version 1.20.1
services:
nginx:
image: nginx
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
container_name: nginx
# Note: `unless-stopped` option doesn't restart consistently on boot
# Enable auto-restart once all is working
#restart: unless-stopped
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
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
# Enable auto-restart once all is working
#restart: unless-stopped
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
- ./nginx.tmpl:/etc/docker-gen/templates/nginx.tmpl:ro
nginx-letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion
container_name: nginx-letsencrypt
# Enable auto-restart once all is working
#restart: unless-stopped
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"
#ACME_CA_URI: "https://acme-staging.api.letsencrypt.org/directory"
#DEBUG: "true"
# Add new websites steps:
# 1. Update `WEBSITES_DOMAINS` in `.env` file
# 2. Clone website repo to `WEBSITES_PATH`
# 3. $ docker-compose up -d
websites:
image: nginx
container_name: websites
# Enable auto-restart once all is working
#restart: unless-stopped
expose:
- "80"
- "443"
volumes:
- ./websites/conf.d:/etc/nginx/conf.d
- ${WEBSITES_PATH}:/var/www:ro
- ${SERVERS_PATH}:/var/server:ro
environment:
VIRTUAL_HOST: ${WEBSITES_DOMAINS}
LETSENCRYPT_HOST: ${WEBSITES_DOMAINS}
LETSENCRYPT_EMAIL: ${WEBSITES_EMAIL}
networks:
default:
external:
name: webproxy