-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
74 lines (65 loc) · 2.26 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.8.0@sha256:1143bb8ce7e8fbc767c70ffba3fac05da50f4210989c2ed3fe0568a62791a172
command: [ "-address", ":8082" ]
network_mode: host
restart: on-failure
ssl-status-board:
image: robocupssl/ssl-status-board:2.11.5@sha256:833d01487b510a8b7851bfbb29723297ac4ab8d7f6d4dee6ceedf10c5335ee85
command: [ "-address", ":8083" ]
network_mode: host
restart: on-failure
ssl-game-controller:
image: robocupssl/ssl-game-controller:3.12.8@sha256:0f520d99a7af6e3a59d93edd60ba68e424917a414cf34b60974d17e84174c7e9
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.8.0@sha256:dc89f64689809bde6e3806a2869891b6ebb5e1ae5098e5f5fb86a30586a0561b
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.5.0@sha256:0314e19644bad38ad2f2b2b81f654ce3828fdcebd3dbe1152929076ebdc61dae
command: [ "-a", "-hl" ]
network_mode: host
restart: on-failure
profiles:
- autorefs-headless
autoref-erforce:
image: roboticserlangen/autoref:commit-6f15f574ea80@sha256:3d7c5933c12eb193a1fefcfd6aba86fba42875c588cc883dc20d0bfcb66b11cb
command: [ ]
network_mode: host
restart: on-failure
profiles:
- autorefs-headless
autoref-ui-tigers:
image: tigersmannheim/auto-referee-vnc:1.5.0@sha256:0314e19644bad38ad2f2b2b81f654ce3828fdcebd3dbe1152929076ebdc61dae
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@sha256:3d7c5933c12eb193a1fefcfd6aba86fba42875c588cc883dc20d0bfcb66b11cb
command: [ "gui" ]
environment:
- DISPLAY=${DISPLAY}
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
network_mode: host
restart: on-failure
profiles:
- autorefs-ui