forked from b-it-bots/mas_industrial_robotics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start-container.yml
34 lines (32 loc) · 1.17 KB
/
start-container.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
version: "3.0"
services:
industrial_kinetic:
image: ghcr.io/b-it-bots/mas_industrial_robotics/industrial-kinetic:latest
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- $HOME/.rviz:/home/robocup/.rviz # include if any specific rviz settings are needed
environment:
- DISPLAY=$DISPLAY
- QT_X11_NO_MITSHM=1
- ROBOT=youbot-brsu-4 # setup robot
- ROBOT_ENV=brsu-c025-sim # setup environement
devices:
- /dev/dri:/dev/dri
privileged: true
tty: true
network_mode: "host"
industrial_melodic:
image: ghcr.io/b-it-bots/mas_industrial_robotics/industrial-melodic:latest
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- $HOME/.rviz:/home/robocup/.rviz # include if any specific rviz settings are needed
environment:
- DISPLAY=$DISPLAY
- QT_X11_NO_MITSHM=1
- ROBOT=youbot-brsu-4 # setup robot
- ROBOT_ENV=brsu-c025-sim # setup environement
devices:
- /dev/dri:/dev/dri
privileged: true
tty: true
network_mode: "host"