-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.production.yml
71 lines (61 loc) · 1.49 KB
/
docker-compose.production.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
# For copyright and license terms, see COPYRIGHT.rst (top level of repository)
# Repository: https://github.com/C3S/collecting_society_docker
networks:
frontend:
backend:
volumes:
collecting_society_postgresql_data:
collecting_society_echoprint_data:
collecting_society_trytond_files:
collecting_society_nginx_certs:
collecting_society_nginx_dhparam:
services:
database:
restart: always
networks:
- backend
volumes:
- collecting_society_postgresql_data:/var/lib/postgresql/data
webserver:
restart: always
networks:
- frontend
ports:
- "127.0.0.1:8080:80" # http
volumes:
- collecting_society_nginx_certs:/etc/nginx/certs
- collecting_society_nginx_dhparam:/etc/nginx/dhparam
erpserver:
restart: always
networks:
- frontend
- backend
ports:
- "127.0.0.1:8008:80" # https
volumes:
- collecting_society_trytond_files:/var/lib/trytond
- /var/lib/dehydrated/certs/${VIRTUAL_HOST_WEBGUI}:/certs
webapi:
restart: always
networks:
- frontend
- backend
volumes:
- collecting_society_trytond_files:/var/lib/trytond
webgui:
restart: always
networks:
- frontend
- backend
volumes:
- collecting_society_trytond_files:/var/lib/trytond
worker:
restart: always
networks:
- backend
fingerprint:
restart: always
networks:
- backend
volumes:
- collecting_society_echoprint_data:/opt/echoprint-data