-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
57 lines (57 loc) · 1.2 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
version: '3'
services:
coordinator:
image: dianne:latest
ports:
- "8080:8080"
volumes:
- ./tools/datasets:/home/dianne/tools/datasets
- ./tools/experience:/home/dianne/tools/experience
- ./tools/models:/home/dianne/tools/models
- ./tools/jobs:/home/dianne/tools/jobs
stdin_open: true
tty: true
environment:
TARGET: coordinator
JAVA_TOOL_OPTIONS: ''
healthcheck:
test: nc -z localhost 9278
interval: 10s
timeout: 60s
retries: 10
networks:
- net
agent:
image: dianne/kuka:latest
stdin_open: true
tty: true
depends_on:
- coordinator
environment:
JAVA_TOOL_OPTIONS: '-Daiolos.connect=coordinator'
healthcheck:
test: nc -z localhost 9278
interval: 10s
timeout: 60s
retries: 10
networks:
- net
learner:
image: dianne:latest
stdin_open: true
tty: true
depends_on:
- coordinator
environment:
TARGET: runtime.learner
JAVA_TOOL_OPTIONS: '-Daiolos.connect=coordinator'
healthcheck:
test: nc -z localhost 9278
interval: 10s
timeout: 60s
retries: 10
networks:
- net
networks:
net:
internal: true