-
Notifications
You must be signed in to change notification settings - Fork 6
/
components.yml
56 lines (47 loc) · 1.22 KB
/
components.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
services:
carla-simulator:
extends:
service: gpu-x11-service
privileged: True
image: rwthika/carla-simulator:server
command: bash -ic './CarlaUE4.sh -nosound 2>/dev/null'
carla-simulator-offscreen:
extends:
service: carla-simulator
command: bash -ic './CarlaUE4.sh -nosound -RenderOffScreen 2>/dev/null'
carla-client:
extends:
service: gpu-x11-service
image: rwthika/carla-simulator:client
command: sleep infinity
carla-scenario-runner:
extends:
service: gpu-x11-service
image: rwthika/carla-scenario-runner
carla-ros-bridge:
extends:
service: gpu-x11-service
image: rwthika/carla-ros-bridge
ros-monitoring:
extends:
service: gpu-x11-service
image: rwthika/ros2-cuda:humble-desktop-full
ros-monitoring-offscreen:
extends:
service: gpu-service
image: rwthika/ros2-cuda:humble-desktop-full
gpu-service:
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
gpu-x11-service:
extends:
service: gpu-service
environment:
DISPLAY: $DISPLAY
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix