-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
68 lines (61 loc) · 2.19 KB
/
docker-compose.yaml
File metadata and controls
68 lines (61 loc) · 2.19 KB
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
services:
ssl-vision-client:
image: robocupssl/ssl-vision-client:2.1.0@sha256:2694ba31a1f5d99460b283d03b0f650d4a6317774bfe175a61deb0a12753ee5d
command: [ "-address", ":8082" ]
network_mode: host
restart: on-failure
ssl-status-board:
image: robocupssl/ssl-status-board:2.17.2@sha256:6190475a48dd64058b3df790971b791f7424dc32c465723f4aa0f568b8549d94
command: [ "-address", ":8083" ]
network_mode: host
restart: on-failure
ssl-game-controller:
image: robocupssl/ssl-game-controller:3.20.2@sha256:09ba4825157e0293f57393ade7c5c9a4a9703f2872f71cc1c51d72916a27aed9
command: [ "-address", "localhost:8081" ]
network_mode: host
restart: on-failure
volumes:
- "./data/ssl-game-controller:/config:rw"
ssl-auto-recorder:
image: robocupssl/ssl-auto-recorder:1.11.0@sha256:8bbcaca7924f947b4e61083f4b50c8f2029ee7adf3f8a8f73c1503eb4749f330
command: [ "-http-port", "8084" ]
network_mode: host
restart: on-failure
volumes:
- "./data/ssl-auto-recorder:/data:rw"
autoref-tigers:
image: tigersmannheim/auto-referee-vnc:1.7.1@sha256:6f859943a4735cb29d8307e6ede3dbe79074eb2fcb11472b08cfaff7d7b2f4c8
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.7.1@sha256:6f859943a4735cb29d8307e6ede3dbe79074eb2fcb11472b08cfaff7d7b2f4c8
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