forked from garncarz/nogamespy-vietcong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (46 loc) · 896 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
version: '3'
services:
master:
image: garncarz/nogamespy-vietcong
build: .
command: ./app.py --master
volumes:
- ./volume:/app/volume
ports:
- 28900:28900
links:
- redis
- db
heartbeat:
image: garncarz/nogamespy-vietcong
build: .
command: ./app.py --heartbeat
volumes:
- ./volume:/app/volume
ports:
- 27900:27900/udp
links:
- redis
- db
celery_worker:
image: garncarz/nogamespy-vietcong
build: .
command: celery worker -A nogamespy -l info
volumes:
- ./volume:/app/volume
links:
- redis
- db
celery_beat:
image: garncarz/nogamespy-vietcong
build: .
command: celery beat -A nogamespy -l info
volumes:
- ./volume:/app/volume
links:
- redis
- db
redis:
image: redis:alpine
db:
image: postgres:alpine