-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (48 loc) · 963 Bytes
/
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
version: '3.7'
services:
nginx:
image: nginx:1.19.2-alpine
ports:
- "8000:8000"
- "7000:7000"
volumes:
- ./nginx:/etc/nginx/conf.d
- /mnt/demo:/var/www/demo:ro
frontend_akl:
build:
context: ./akll-frontend
args:
game: akl
environment:
- NODE_ENV=production
frontend_all:
build:
context: ./akll-frontend
args:
game: all
environment:
- NODE_ENV=production
backend:
build: ./AKL-2020-Backend/
env_file:
- ./envs/.env.backend
database:
image: mongo
restart: always
volumes:
- ./mongo-volume:/data/db
challonge:
build: ./akll-challonge/
env_file:
- ./envs/.env.challonge
match_config:
build: ./akl-match-config/
env_file:
- ./envs/.env.matchconfig
match_service:
build: ./akl-match-service/
env_file:
- ./envs/.env.matchservice
volumes:
akl-volume:
all-volume: