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 :
rmp :
driver : macvlan
driver_opts :
2023-09-13 09:51:10 +00:00
parent : eno1 # robot network interface
2023-09-13 09:48:45 +00:00
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.
2023-09-13 09:45:32 +00:00
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-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
# Needed to display graphical applications
2023-08-28 10:19:24 +00:00
#privileged: true
2023-07-26 11:02:21 +00:00
environment :
# Allows graphical programs in the container.
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- NVIDIA_DRIVER_CAPABILITIES=all
volumes :
# Allows graphical programs in the container.
- /tmp/.X11-unix:/tmp/.X11-unix:rw
- ${XAUTHORITY:-$HOME/.Xauthority}:/root/.Xauthority
2023-09-13 10:22:52 +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
#entrypoint: /bin/bash
command : >
/bin/bash
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
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
2023-08-08 09:37:57 +00:00
environment :
2023-08-30 06:26:46 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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-08-17 08:51:15 +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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
# Needed to display graphical applications
2023-08-28 09:56:46 +00:00
privileged : false
2023-08-01 09:03:47 +00:00
# depends_on:
# - robot_state_publisher
2023-08-08 09:37:57 +00:00
environment :
2023-08-31 09:30:00 +00:00
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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-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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-31 08:13:01 +00:00
ipc : host
# Needed to display graphical applications
privileged : true
2023-08-08 09:37:57 +00:00
environment :
2023-08-31 09:30:00 +00:00
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-07-31 08:13:01 +00:00
2023-07-31 08:07:09 +00:00
# lidar
lidar :
2023-07-26 11:02:21 +00:00
extends : overlay
command : >
2023-08-28 10:16:09 +00:00
ros2 launch cps_rmp220_support robot_lidar.launch.py serial_port:=/dev/rplidarA1
2023-07-26 11:02:21 +00:00
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
2023-08-09 08:36:40 +00:00
# depends_on:
# - robot_state_publisher
2023-08-08 09:37:57 +00:00
environment :
2023-08-31 09:30:00 +00:00
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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-07-26 11:02:21 +00:00
2023-08-22 07:05:48 +00:00
# localiaztion by ekf node
ekf :
extends : overlay
command : >
ros2 launch cps_rmp220_support robot_localization.launch.py
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-08-22 07:05:48 +00:00
ipc : host
environment :
2023-08-31 09:30:00 +00:00
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-08-22 07:05:48 +00:00
2023-07-26 11:02:21 +00:00
# mapping
mapping :
extends : overlay
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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
2023-08-08 09:37:57 +00:00
environment :
2023-09-06 06:37:24 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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
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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-08-23 06:16:20 +00:00
ipc : host
environment :
2023-08-30 06:26:46 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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
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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-08-22 10:06:18 +00:00
ipc : host
environment :
2023-08-30 06:26:46 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-08-22 10:06:18 +00:00
2023-07-26 11:02:21 +00:00
# navigation
navigation :
extends : overlay
command : >
2023-08-08 08:51:25 +00:00
ros2 launch cps_rmp220_support robot_navigation.launch.py
2023-07-26 11:02:21 +00:00
map_subscribe_transient_local:=true
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-26 11:02:21 +00:00
ipc : host
2023-08-08 09:37:57 +00:00
environment :
2023-08-30 06:26:46 +00:00
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-07-28 09:36:43 +00:00
# bash
bash :
extends : overlay
command : >
/bin/bash
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-07-28 09:36:43 +00:00
ipc : host
2023-08-08 09:34:04 +00:00
environment :
- ROS_DOMAIN_ID=5
2023-08-31 09:30:00 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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-08 08:51:25 +00:00
# ros2 launch cps_rmp220_support robot_rviz2.launch.py
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
# Interactive shell
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 11:59:17 +00:00
network_mode : host
2023-08-02 13:56:21 +00:00
ipc : host
# Needed to display graphical applications
privileged : true
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
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-08-29 07:35:01 +00:00
ipc : host
2023-08-29 08:04:00 +00:00
environment :
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-09-14 09:08:13 +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 .201 #actually don't need to set ips. they are set automatically by docker-compose. SHould be inherited by all child services.
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
stdin_open : true
tty : true
# Networking and IPC for ROS 2
2023-09-13 09:45:32 +00:00
#network_mode: host
2023-08-29 09:17:44 +00:00
ipc : host
environment :
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
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
command : >
ros2 launch cps_rmp220_support robot_exploration.launch.py
stdin_open : true
tty : true
# Networking and IPC for ROS 2
#network_mode: host
ipc : host
environment :
- ROS_DOMAIN_ID=5
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
### 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-09-13 09:45:32 +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-09-13 09:45:32 +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
stdin_open : true
tty : true
# Networking and IPC for ROS 2
#network_mode: host
ipc : host
environment :
- ROS_DOMAIN_ID=5
2023-09-18 10:09:05 +00:00
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
2023-09-19 08:07:09 +00:00
privileged : true
2023-09-18 10:29:01 +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-19 08:18:54 +00:00
- /dev/:/dev/
2023-09-21 07:37:57 +00:00
# for testing the oak-d-lite camera
depthai :
image : luxonis/depthai:latest
command : >
python3 /depthai/depthai_demo.py
stdin_open : true
tty : true
# Networking and IPC for ROS 2
#network_mode: host
ipc : host
privileged : true
2023-09-21 07:38:21 +00:00
#devices:
2023-09-21 07:37:57 +00:00
#- /dev/oakd-lite:/dev/oakd-lite # need corresponding udevrules for this to work:
environment :
- DISPLAY=${DISPLAY}
- QT_X11_NO_MITSHM=1
- NVIDIA_DRIVER_CAPABILITIES=all
2023-09-18 10:09:05 +00:00