-
Notifications
You must be signed in to change notification settings - Fork 15
/
docker-compose.yml
56 lines (49 loc) · 900 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
---
reg:
image: ab_reg
name: reg
ports:
- "5000:5000"
links:
- redis
- rabbit
mes:
image: ab_reg
name: mes
command: "python3 -u /actors/message_api.py"
ports:
- "5001:5000"
links:
- redis
- rabbit
admin:
image: ab_reg
name: admin
command: "python3 -u /actors/admin_api.py"
ports:
- "5003:5000"
links:
- redis
- rabbit
spawner:
image: ab_reg
name: spawner
command: "python3 -u /actors/spawner.py"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
links:
- redis
- rabbit
redis:
image: redis
name: redis
ports:
- "6379:6379"
rabbit:
image: rabbitmq:3.5.3-management
name: rabbit
ports:
- "5672:5672"
- "15672:15672"
environment:
RABBITMQ_NODENAME: abaco-rabbit