forked from RoboCup-SSL/ssl-simulation-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-teams.yaml
81 lines (75 loc) · 1.58 KB
/
docker-compose-teams.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
75
76
77
78
79
80
81
version: '2.4'
services:
team-tigers:
image: robocupssl/ubuntu-vnc-java:0.3.0
restart: unless-stopped
mem_limit: "${TEAM_LIMIT_MEM}"
cpus: "${TEAM_LIMIT_CPU}"
environment:
SSH_PUBLIC_KEY:
VNC_PW:
VNC_RESOLUTION: 1920x1080
volumes:
- team-tigers-data:/home/default:rw
ports:
- 5901/tcp
- 2222/tcp
networks:
- match
- guacamole
team-erforce:
image: roboticserlangen/robocup:latest
restart: unless-stopped
mem_limit: "${TEAM_LIMIT_MEM}"
cpus: "${TEAM_LIMIT_CPU}"
environment:
SSH_PUBLIC_KEY:
VNC_PW:
volumes:
- team-erforce-data:/home/default:rw
ports:
- 5901/tcp
- 2222/tcp
networks:
- match
- guacamole
team-ubcthunderbots:
image: ubcthunderbots/tbots-software-env:0.0.1
restart: unless-stopped
mem_limit: "${TEAM_LIMIT_MEM}"
cpus: "${TEAM_LIMIT_CPU}"
environment:
SSH_PUBLIC_KEY:
VNC_PW:
volumes:
- team-ubcthunderbots-data:/home/default:rw
ports:
- 5901/tcp
- 2222/tcp
networks:
- match
- guacamole
team-robocin:
image: lhcs/robocin-coach:latest
restart: unless-stopped
mem_limit: "${TEAM_LIMIT_MEM}"
cpus: "${TEAM_LIMIT_CPU}"
environment:
SSH_PUBLIC_KEY:
VNC_PW:
volumes:
- team-robocin-data:/home/default:rw
ports:
- 5901/tcp
- 2222/tcp
networks:
- match
- guacamole
volumes:
team-tigers-data:
team-erforce-data:
team-ubcthunderbots-data:
team-robocin-data:
networks:
match:
guacamole: