-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
executable file
·45 lines (42 loc) · 1.01 KB
/
Copy pathcompose.yml
File metadata and controls
executable file
·45 lines (42 loc) · 1.01 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
39
40
41
42
43
44
45
include:
- aux_services.yaml
services:
robot:
container_name: kapibara_robot2
network_mode: host
image: robot_ros
privileged: true
tty: true
# networks:
# - internet
build:
dockerfile: ./Dockerfile
context: ./robot
# platforms:
# - linux/arm64
stop_signal: SIGINT
stop_grace_period: 30m
env_file:
- ./robot/env/env
environment:
- ROS_DOMAIN_ID=0
volumes:
- ./robot/entrypoint.sh:/entrypoint.sh:rwx
- ./robot/run.sh:/run.sh:rwx
- ./robot/commands/:/app/cmd
- ./robot/dependencies/:/app/dep
- ./robot/src:/app/src:rw
- ./robot/dependencies/rosdep_package.list:/etc/ros/rosdep/sources.list.d/20-default.list
- /sys:/sys
- /etc/udev:/etc/udev
- /run/udev:/run/udev
- /run/dbus/:/run/dbus
- /dev:/dev
# - ./addons:/addons
# - /dev/shm:/dev/shm
# - /tmp/.X11-unix:/tmp/.X11-unix:rw
group_add:
- video
- dialout
- 1001
# - 993