2023-07-26 11:02:21 +00:00
version : "3.9"
2023-08-02 13:56:21 +00:00
2023-09-13 09:45:32 +00:00
# First network configuration. Change this to the network interface you want to use primarily. (Better configuration for multiple Network interfaces needed).
networks :
2023-10-05 07:00:00 +00:00
# rmp:
# driver: macvlan
# driver_opts:
# parent: eno1 # robot network interface
# ipam:
# config:
# - subnet: 192.168.0.0/24
# gateway: 192.168.0.1
# ip_range: 192.168.0.200/25
# aux_addresses:
# net-address: 192.168.0.100 #? what is this for --> to exclude addresses from buing used.
# make new bridge network for ros
2023-09-13 09:45:32 +00:00
rmp :
2023-10-05 07:00:00 +00:00
driver : bridge
# ipam:
# config:
# - subnet:
2023-09-13 09:45:32 +00:00
2023-11-13 15:52:16 +00:00
# add this mountpoint to all services: - ./customize/entrypoint.sh:/entrypoint.sh
2023-11-13 15:48:59 +00:00
# Attention: child services will inherit settings from their parents. So if you set a network_mode: host in the base service, all child services will also use host networking. This is not always what you want. So be careful with this.
2023-07-26 11:02:21 +00:00
services :
# Base image containing dependencies.
base :
image : ghcr.io/bjoernellens1/ros2_rmp/rmp:base
build :
context : .
2023-07-28 08:07:09 +00:00
dockerfile : docker/Dockerfile
2023-09-05 06:52:37 +00:00
tags :
- ghcr.io/bjoernellens1/ros2_rmp/rmp:base
2023-07-26 11:02:21 +00:00
args :
ROS_DISTRO : humble
target : base
2023-07-28 08:07:09 +00:00
x-bake :
platforms :
- linux/arm64
2023-08-02 09:34:51 +00:00
- linux/amd64
2023-07-26 11:02:21 +00:00
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-10-05 07:05:57 +00:00
network_mode : host
2023-07-26 11:02:21 +00:00
ipc : host
# Needed to display graphical applications
environment :
# Allows graphical programs in the container.
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- NVIDIA_DRIVER_CAPABILITIES=all
2023-11-13 15:48:59 +00:00
# set correct ros2 parameters: domain id and rmw implementation
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-11-14 13:55:16 +00:00
- CYCLONEDDS_URI=file:///cyclonedds.xml
2023-07-26 11:02:21 +00:00
volumes :
# Allows graphical programs in the container.
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- ${XAUTHORITY:-$HOME/.Xauthority}:/root/.Xauthority
2023-11-13 15:48:59 +00:00
- ./customize/entrypoint.sh:/entrypoint.sh
2023-11-14 14:29:24 +00:00
- ./customize/cyclonedds.xml:/cyclonedds.xml
2023-07-26 11:02:21 +00:00
2023-10-05 07:06:41 +00:00
# networks: # not using bridging anymore, instead try using all services on macvlan? let's see... shoudl word for now. Bridging does definitely not work because multicast is not supported here.
# rmp:
# #ipv4_address: 192.168.0.101 #actually don't need to set ips. they are set automatically by docker-compose. SHould be inherited by all child services.
2023-09-13 09:57:55 +00:00
2023-07-28 08:07:09 +00:00
# Overlay image containing the project specific source code.
2023-07-26 11:02:21 +00:00
overlay :
extends : base
image : ghcr.io/bjoernellens1/ros2_rmp/rmp:overlay
build :
context : .
2023-07-28 08:07:09 +00:00
dockerfile : docker/Dockerfile
2023-07-28 09:11:54 +00:00
tags :
- ghcr.io/bjoernellens1/ros2_rmp/rmp:overlay
2023-07-26 11:02:21 +00:00
target : overlay
2023-07-28 08:07:09 +00:00
x-bake :
platforms :
- linux/arm64
2023-08-02 09:34:51 +00:00
- linux/amd64
2023-08-02 13:56:21 +00:00
volumes :
- .:/repo
2023-08-03 06:33:30 +00:00
command : >
/bin/bash
2023-08-02 09:34:51 +00:00
2023-08-02 13:56:21 +00:00
# Additional dependencies for GUI applications
guis :
extends : overlay
image : ghcr.io/bjoernellens1/ros2_rmp/rmp:guis
build :
context : .
dockerfile : docker/Dockerfile
tags :
- ghcr.io/bjoernellens1/ros2_rmp/rmp:guis
target : guis
x-bake :
platforms :
- linux/arm64
- linux/amd64
command : >
/bin/bash
2023-12-24 10:59:29 +00:00
devices :
- /dev/dri:/dev/dri
2023-07-26 11:02:21 +00:00
# Robot State Publisher
2023-08-10 07:04:23 +00:00
rsp :
2023-07-26 11:02:21 +00:00
extends : overlay
command : >
2023-08-08 08:51:25 +00:00
ros2 launch cps_rmp220_support rsp.launch.py
2023-07-26 11:02:21 +00:00
2023-07-31 08:13:01 +00:00
# Controller
2023-07-26 11:02:21 +00:00
controller :
2023-09-26 09:23:47 +00:00
extends : base
2023-07-26 11:02:21 +00:00
command : >
2023-08-28 10:16:09 +00:00
ros2 run segwayrmp SmartCar --ros-args -r cmd_vel:=cmd_vel_out -p serial_full_name:=/dev/segway
2023-07-26 11:02:21 +00:00
devices :
2023-08-28 10:16:09 +00:00
- /dev/segway:/dev/segway
2023-08-28 10:21:03 +00:00
- /dev/ttyUSB0:/dev/ttyUSB0
2023-07-26 11:02:21 +00:00
2023-07-31 08:13:01 +00:00
# teleop
teleop :
2023-08-18 08:03:42 +00:00
extends : base
2023-09-26 09:23:47 +00:00
depends_on :
- controller
2023-07-31 08:13:01 +00:00
command : >
2023-08-17 08:51:15 +00:00
ros2 launch rmp220_teleop robot_joystick.launch.py
2023-07-31 08:13:01 +00:00
devices :
- /dev/input/js0:/dev/input/js0
2023-07-31 08:07:09 +00:00
# lidar
lidar :
2023-07-26 11:02:21 +00:00
extends : overlay
2023-10-16 06:50:52 +00:00
depends_on :
- lidar_filter
2023-07-26 11:02:21 +00:00
command : >
2023-08-28 10:16:09 +00:00
ros2 launch cps_rmp220_support robot_lidar.launch.py serial_port:=/dev/rplidarA1
2023-08-09 09:58:24 +00:00
devices :
2023-08-28 10:16:09 +00:00
- /dev/rplidarA1:/dev/rplidarA1 #udevrules needed for this to work :
# SUBSYSTEM=="tty", ATTRS{serial}=="0001", SYMLINK+="segway"
# SUBSYSTEM=="tty", ATTRS{serial}=="3453995662b3af4f81f4a69eba5f3f29", SYMLINK+="rplidarA1"
2023-10-13 07:18:00 +00:00
# Lidar filtering node.
lidar_filter :
extends : overlay
command : >
2023-10-16 06:50:29 +00:00
ros2 launch cps_rmp220_support robot_scan_filter.launch.py
2023-07-26 11:02:21 +00:00
2023-08-22 07:05:48 +00:00
# localiaztion by ekf node
ekf :
extends : overlay
2023-09-26 09:23:47 +00:00
depends_on :
- controller
- rsp
2023-08-22 07:05:48 +00:00
command : >
ros2 launch cps_rmp220_support robot_localization.launch.py
2023-07-26 11:02:21 +00:00
# mapping
mapping :
extends : overlay
2023-09-26 09:23:47 +00:00
depends_on :
- ekf
- rsp
- lidar
2023-07-26 11:02:21 +00:00
command : >
2023-08-08 08:51:25 +00:00
ros2 launch cps_rmp220_support robot_mapping.launch.py
2023-07-26 11:02:21 +00:00
2023-08-29 08:04:00 +00:00
# slam-toolbox-localization
2023-08-22 10:06:18 +00:00
localization :
extends : overlay
2023-09-26 09:23:47 +00:00
depends_on :
- ekf
- rsp
- lidar
2023-08-22 10:06:18 +00:00
command : >
2023-08-23 06:32:04 +00:00
ros2 launch cps_rmp220_support robot_mapping_localization.launch.py map_file_name:=/repo/maps/map.yaml
2023-08-23 06:16:20 +00:00
2023-08-23 06:32:04 +00:00
# amcl_localization
2023-08-23 06:16:20 +00:00
amcl :
extends : overlay
2023-09-26 09:23:47 +00:00
depends_on :
- ekf
- rsp
- lidar
2023-08-23 06:16:20 +00:00
command : >
2023-08-23 06:32:04 +00:00
ros2 launch cps_rmp220_support robot_amcl.launch.py map:=/repo/maps/map.yaml
2023-08-22 10:06:18 +00:00
2023-07-26 11:02:21 +00:00
# navigation
navigation :
extends : overlay
2023-10-04 12:11:22 +00:00
depends_on :
- controller
- teleop
- rsp
- lidar
- ekf
- oakd
2023-07-26 11:02:21 +00:00
command : >
2023-10-20 12:22:13 +00:00
ros2 launch nav2_bringup bringup_launch.py slam:=False map:=/repo/maps/map_openlabday.yaml use_sim_time:=False use_composition:=True params_file:=/overlay_ws/src/cps_rmp220_support/config/nav2_params.yaml
2023-07-28 09:36:43 +00:00
# bash
bash :
extends : overlay
command : >
/bin/bash
2023-07-26 11:02:21 +00:00
2023-08-02 13:56:21 +00:00
# rviz2
rviz2 :
2023-09-13 11:59:17 +00:00
#extends: guis
image : ghcr.io/bjoernellens1/ros2_rmp/rmp:guis
2023-08-02 13:56:21 +00:00
command : >
2023-08-22 06:34:05 +00:00
ros2 launch cps_rmp220_support rviz.launch.py
2023-08-02 13:56:21 +00:00
# Needed to display graphical applications
2023-11-13 15:48:59 +00:00
privileged : true # really necessary?
2023-08-02 13:56:21 +00:00
environment :
# Allows graphical programs in the container.
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- NVIDIA_DRIVER_CAPABILITIES=all
2023-08-08 09:37:57 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-08-02 13:56:21 +00:00
volumes :
# Allows graphical programs in the container.
- /tmp/.X11-unix:/tmp/.X11-unix:rw
2023-08-29 07:07:28 +00:00
- ${XAUTHORITY:-$HOME/.Xauthority}:/root/.Xauthority
2023-09-13 11:59:17 +00:00
2023-08-29 08:04:00 +00:00
# Foxglove Studio Bridge
2023-08-29 07:35:01 +00:00
foxglove_bridge :
2023-08-29 08:04:00 +00:00
extends : overlay
2023-08-29 07:07:28 +00:00
command : >
ros2 launch foxglove_bridge foxglove_bridge_launch.xml port:=8765
2023-08-29 07:35:01 +00:00
# Foxglove Studio Webserver
foxglove_webserver :
image : ghcr.io/foxglove/studio:latest
stdin_open : true
tty : true
# Networking
2023-09-14 09:08:13 +00:00
network_mode : bridge
2023-08-29 07:35:01 +00:00
ports :
- 8080 : 8080
2023-09-14 09:08:37 +00:00
depends_on :
- foxglove_bridge
2023-09-14 09:48:39 +00:00
volumes :
- ./foxglove/default.json:/foxglove/default-layout.json
2023-08-29 09:17:44 +00:00
# USB Camera Stream
cam :
extends : overlay
command : >
ros2 run ros2_cam_openCV cam_node
devices :
- /dev/video0:/dev/video0
2023-09-05 06:52:37 +00:00
2023-09-14 06:36:30 +00:00
# ROS2 Frontier exploration
explorer :
extends : overlay
2023-09-26 09:23:47 +00:00
depends_on :
- controller
- teleop
- rsp
- lidar
- ekf
- navigation
2023-09-14 06:36:30 +00:00
command : >
ros2 launch cps_rmp220_support robot_exploration.launch.py
### Images for ROS1 Interactions
2023-09-05 06:52:37 +00:00
#ROS1 Bridge
ros1bridge :
image : ghcr.io/bjoernellens1/ros2_rmp/ros1bridge
command : >
ros2 run ros1_bridge dynamic_bridge --bridge-all-2to1-topics
build :
context : .
dockerfile : docker/Dockerfile
tags :
- ghcr.io/bjoernellens1/ros2_rmp/ros1bridge
args :
ROS_DISTRO : humble
target : bridge
x-bake :
platforms :
#- linux/arm64
- linux/amd64
# Networking and IPC for ROS 2
2023-11-13 15:24:55 +00:00
network_mode : host
2023-09-05 06:52:37 +00:00
ipc : host
environment :
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
- ROS_MASTER_URI=http://localhost:11311 # is configured to run roscore on the robot but could change to local ros1 machine here
#ROS1 roscore
roscore :
command : >
roscore
extends : ros1bridge
2023-11-13 15:24:55 +00:00
network_mode : host
2023-09-05 06:52:37 +00:00
ipc : host
environment :
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-09-18 10:02:15 +00:00
- ROS_MASTER_URI=http://localhost:11311 # is configured to run roscore on the robot but could change to local ros1 machine here
# ROS2 oak-d-lite camera
oakd :
extends : overlay
command : >
ros2 launch depthai_examples stereo.launch.py
2023-09-21 07:51:45 +00:00
#devices:
2023-09-19 08:18:54 +00:00
#- /dev/oakd-lite:/dev/oakd-lite # need corresponding udevrules for this to work:
2023-09-18 10:29:01 +00:00
# SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666", SYMLINK+="oakd-lite"
2023-09-21 07:51:45 +00:00
#- /dev/:/dev/
device_cgroup_rules :
- 'c 189:* rmw'
volumes :
- /dev/bus/usb:/dev/bus/usb
2023-09-21 07:37:57 +00:00
2023-09-21 07:51:45 +00:00
# for testing the oak-d-lite camera -> works now with cgroup rules
2023-09-21 07:37:57 +00:00
depthai :
image : luxonis/depthai:latest
command : >
python3 /depthai/depthai_demo.py
stdin_open : true
tty : true
2023-09-21 07:49:05 +00:00
device_cgroup_rules :
- 'c 189:* rmw'
volumes :
- /dev/bus/usb:/dev/bus/usb
2023-09-21 07:37:57 +00:00
environment :
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- NVIDIA_DRIVER_CAPABILITIES=all
2023-10-20 11:40:40 +00:00
2023-11-13 15:28:59 +00:00
zerotier :
image : "zyclonite/zerotier:router"
container_name : zerotier-one
devices :
- /dev/net/tun
network_mode : host
volumes :
- '/var/lib/zerotier-one:/var/lib/zerotier-one'
cap_add :
- NET_ADMIN
- SYS_ADMIN
- NET_RAW
restart : unless-stopped
environment :
- TZ=Europe/Amsterdam
- PUID=1000
- PGID=1000
- ZEROTIER_ONE_LOCAL_PHYS=enp5s0 wlx00e04c5513fc # change for actual interfaces
- ZEROTIER_ONE_USE_IPTABLES_NFT=false
- ZEROTIER_ONE_GATEWAY_MODE=inbound # might change to both ways
#- ZEROTIER_ONE_NETWORK_IDS= # does not really do much?