-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcompose-simulation.yaml
More file actions
38 lines (37 loc) · 1.4 KB
/
compose-simulation.yaml
File metadata and controls
38 lines (37 loc) · 1.4 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
services:
ar-simulation:
image: ghcr.io/collaborativeroboticslab/algorithmic-robots-mars-surface:jazzy
environment:
- PYTHONUNBUFFERED=1 # GUI related
- DISPLAY # GUI related
- QT_X11_NO_MITSHM=1 # GUI related
- NVIDIA_VISIBLE_DEVICES=all # GUI related
- NVIDIA_DRIVER_CAPABILITIES=all # GUI related
- ROS_DOMAIN_ID=${SIM_ROS_DOMAIN_ID:-0}
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
restart: unless-stopped
privileged: true
network_mode: host
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- /dev:/dev:rw
ar-workspace:
image: ghcr.io/collaborativeroboticslab/turtlebot4-workspace:jazzy
environment:
- PYTHONUNBUFFERED=1 # GUI related
- DISPLAY # GUI related
- QT_X11_NO_MITSHM=1 # GUI related
- NVIDIA_VISIBLE_DEVICES=all # GUI related
- NVIDIA_DRIVER_CAPABILITIES=all # GUI related
- ROS_DOMAIN_ID=${SIM_ROS_DOMAIN_ID:-0}
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
restart: unless-stopped
tty: true
stdin_open: true
network_mode: host
volumes:
- ./workspace:/workspace:rw
- ./code-server/config:/root/.config/code-server:rw
- ./code-server/data:/root/.local/share/code-server:rw
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- /dev:/dev:rw