-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
88 lines (80 loc) · 1.43 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
85
86
87
88
services:
postgres:
image: postgres
restart: always
env_file: .env
volumes:
- data_postgres:/var/lib/postgresql/data
networks:
- transcendence
ports:
- "5432:5432"
certs:
build: ./certs
restart: on-failure
env_file: .env
volumes:
- ./data_certs:/certs
networks:
- transcendence
frontend:
build: ./frontend
restart: always
env_file: .env
depends_on:
- certs
ports:
- "8888:443"
- "8000:80"
networks:
- transcendence
volumes:
- ./data_certs:/certs
backend:
build: ./backend
restart: always
env_file: .env
depends_on:
- postgres
- certs
networks:
- transcendence
volumes:
- ./data_exports:/exports
- ./data_certs:/certs
harvester:
build: ./harvester
restart: always
env_file: .env
depends_on:
- postgres
volumes:
- ./data_exports:/exports
networks:
- transcendence
statcruncher:
build: ./statcruncher
restart: always
env_file: .env
depends_on:
- postgres
- certs
networks:
- transcendence
volumes:
- ./data_certs:/certs
pongbot:
build: ./pongbot
restart: always
env_file: .env
depends_on:
- certs
networks:
- transcendence
volumes:
- ./data_certs:/certs
networks:
transcendence:
driver: bridge
volumes:
data_postgres: