-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
71 lines (68 loc) · 1.31 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3'
services:
glados:
image: test-glados:v0.0.1
expose:
- '5000'
ports:
- "5000:5000"
environment:
PORT: 5000
ANGER_CONNECTOR: "anger:4400"
MORALITY_CONNECTOR: "morality:4401"
CURIOSITY_CONNECTOR: "curiosity:4402"
INTELLIGENCE_CONNECTOR: "intelligence:4403"
networks:
- aperture
anger:
image: test-external_core:v0.0.1
expose:
- '4400'
ports:
- "4400:4400"
environment:
PORT: 4400
CORE_TYPE: ANGER
networks:
- aperture
morality:
image: test-external_core:v0.0.1
expose:
- '4401'
ports:
- "4401:4401"
environment:
PORT: 4401
CORE_TYPE: MORALITY
networks:
- aperture
curiosity:
image: test-external_core:v0.0.1
expose:
- '4402'
ports:
- "4402:4402"
environment:
PORT: 4402
CORE_TYPE: CURIOSITY
networks:
- aperture
intelligence:
image: test-external_core:v0.0.1
expose:
- '4403'
ports:
- "4403:4403"
environment:
PORT: 4403
CORE_TYPE: INTELLIGENCE
networks:
- aperture
# debug:
# image: ubuntu
# entrypoint: /bin/sh -c 'while true; do sleep 2; echo "<...>"; done'
# networks:
# - aperture
networks:
aperture:
driver: bridge