-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.prod.yaml
executable file
·60 lines (54 loc) · 1.45 KB
/
compose.prod.yaml
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
services:
###############################################################################
# Python Linky application
linky2db:
restart: always
devices:
- ${LINKY_USB_DEVICE}:${LINKY_USB_DEVICE}
###############################################################################
# MySQL Database
mysql:
restart: always
###############################################################################
# Grafana
grafana:
restart: always
###############################################################################
# NginX
nginx:
container_name: nginx
profiles: ["https"]
image: nginxproxy/nginx-proxy
restart: always
env_file: .env
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:ro
- /var/run/docker.sock:/tmp/docker.sock:ro
###############################################################################
# LetsEncrypt
letsencrypt:
container_name: letsencrypt
profiles: ["https"]
image: nginxproxy/acme-companion
restart: always
env_file: .env
volumes_from:
- nginx
volumes:
- certs:/etc/nginx/certs:rw
- acme:/etc/acme.sh
- /var/run/docker.sock:/var/run/docker.sock:ro
###############################################################################
# MySQL volume
volumes:
conf:
vhost:
html:
certs:
acme: