We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 5425ab3Copy full SHA for 5425ab3
docker-compose.yaml
@@ -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
11
+ environment:
12
+ REDIS_HOST: redis
13
+
14
+ sergeant-socket:
15
+ build: ./SergeantSocket
16
17
18
19
20
21
22
23
24
25
+ commander-cortex:
26
+ profiles:
27
+ - ui
28
+ build: ./CommanderCortex
29
30
31
32
33
34
35
36
37
+ stdin_open: true
38
+ tty: true
39
40
+ redis:
41
+ image: redis:alpine
42
+ ports:
43
+ - "6379:6379"
0 commit comments