-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
75 lines (66 loc) · 1.81 KB
/
docker-compose.yaml
File metadata and controls
75 lines (66 loc) · 1.81 KB
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
version: '3'
services:
nginx-proxy:
image: jwilder/nginx-proxy
restart: always
ports:
- "80:80"
- "443:443"
volumes:
- certs:/etc/nginx/certs
- html:/usr/share/nginx/html
- /var/run/docker.sock:/tmp/docker.sock:ro
- ./vhost.d:/etc/nginx/vhost.d:ro
labels:
- com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy
letsencrypt:
image: jrcs/letsencrypt-nginx-proxy-companion
restart: always
environment:
- NGINX_PROXY_CONTAINER=nginx-proxy
- DEFAULT_EMAIL=makersupv@gmail.com
volumes:
- certs:/etc/nginx/certs
- ./vhost.d:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- /var/run/docker.sock:/var/run/docker.sock:ro
ghost:
image: ghost
restart: always
expose:
- "2368"
environment:
- url=https://makersupv.com
- VIRTUAL_HOST=makersupv.com,www.makersupv.com
- LETSENCRYPT_HOST=makersupv.com,www.makersupv.com
- mail__transport=SMTP
- mail__options__service=Mailgun
- mail__options__auth__user=${GHOST_MAIL_OPTIONS_AUTH_USER}
- mail__options__auth__pass=${GHOST_MAIL_OPTIONS_AUTH_PASS}
volumes:
- /var/lib/docker/makersupv-ghost-docker/ghost/content/:/var/lib/ghost/content/:rw
nodered:
image: nodered/node-red
restart: always
expose:
- "1880"
environment:
- VIRTUAL_HOST=nodered.makersupv.com
- LETSENCRYPT_HOST=nodered.makersupv.com
volumes:
- node-red-data:/data
nodered-sandbox:
image: nodered/node-red
restart: always
expose:
- "1880"
environment:
- VIRTUAL_HOST=nodered-sandbox.makersupv.com
- LETSENCRYPT_HOST=nodered-sandbox.makersupv.com
volumes:
- node-red-sandbox-data:/data
volumes:
node-red-data:
node-red-sandbox-data:
certs:
html: