-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (31 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (31 loc) · 861 Bytes
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
services:
ros_dev:
build: .
container_name: ros_pet_container
restart: unless-stopped
network_mode: host
privileged: true
environment:
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- TERM=xterm-256color
- DISABLE_ROS1_EOL_WARNINGS=1
volumes:
- ~/repos:/home/dev/repos
- ./catkin_ws:/home/dev/catkin_ws
- ~/bag:/home/dev/bags
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- ./demo:/home/dev/demo
- /media:/media:rw
command: tail -f /dev/null
converter:
image: ghcr.io/comrob/ros_bag_converter:latest
build: .
container_name: bag_converter_runner
restart: "no"
user: "${CURRENT_UID:-1000}:${CURRENT_GID:-1000}"
working_dir: /data
volumes:
- ./src:/home/dev/src
- ${HOST_DATA_DIR:-.}:/data
command: python3 /home/dev/src/convert.py --help