-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yaml
74 lines (65 loc) · 1.7 KB
/
docker-compose.yaml
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
72
73
74
version: '3'
volumes:
ssl-game-controller-volume:
ssl-auto-recorder-volume:
services:
ssl-vision-client:
image: robocupssl/ssl-vision-client:1.7.3
command: [ "-address", ":8082" ]
network_mode: host
restart: on-failure
ssl-status-board:
image: robocupssl/ssl-status-board:2.10.4
command: [ "-address", ":8083" ]
network_mode: host
restart: on-failure
ssl-game-controller:
image: robocupssl/ssl-game-controller:3.7.3
command: [ "-address", "localhost:8081" ]
network_mode: host
restart: on-failure
volumes:
- "ssl-game-controller-volume:/config:rw"
ssl-auto-recorder:
image: robocupssl/ssl-auto-recorder:1.5.2
command: [ "-http-port", "8084" ]
network_mode: host
restart: on-failure
volumes:
- "ssl-auto-recorder-volume:/data:rw"
autoref-tigers:
image: tigersmannheim/auto-referee-vnc:1.2.0
command: [ "-a", "-hl" ]
network_mode: host
restart: on-failure
profiles:
- autorefs-headless
autoref-erforce:
image: roboticserlangen/autoref:commit-6f15f574ea80
command: [ ]
network_mode: host
restart: on-failure
profiles:
- autorefs-headless
autoref-ui-tigers:
image: tigersmannheim/auto-referee-vnc:1.2.0
command: [ "-a" ]
environment:
- DISPLAY=${DISPLAY}
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
network_mode: host
restart: on-failure
profiles:
- autorefs-ui
autoref-ui-erforce:
image: roboticserlangen/autoref:commit-6f15f574ea80
command: [ "gui" ]
environment:
- DISPLAY=${DISPLAY}
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
network_mode: host
restart: on-failure
profiles:
- autorefs-ui