Skip to content

Commit 5425ab3

Browse files
committed
added docker compose file
0 parents  commit 5425ab3

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

docker-compose.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
services:
2+
armada-assault:
3+
build: ./ArmadaAssault
4+
command: ["attack", "explore", "spread"]
5+
volumes:
6+
- ./config.json:/config.json
7+
links:
8+
- redis
9+
depends_on:
10+
- redis
11+
environment:
12+
REDIS_HOST: redis
13+
14+
sergeant-socket:
15+
build: ./SergeantSocket
16+
volumes:
17+
- ./config.json:/config.json
18+
links:
19+
- redis
20+
depends_on:
21+
- redis
22+
environment:
23+
REDIS_HOST: redis
24+
25+
commander-cortex:
26+
profiles:
27+
- ui
28+
build: ./CommanderCortex
29+
volumes:
30+
- ./config.json:/config.json
31+
links:
32+
- redis
33+
depends_on:
34+
- redis
35+
environment:
36+
REDIS_HOST: redis
37+
stdin_open: true
38+
tty: true
39+
40+
redis:
41+
image: redis:alpine
42+
ports:
43+
- "6379:6379"

0 commit comments

Comments
 (0)