This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.rosbot.yaml
63 lines (58 loc) · 1.89 KB
/
compose.rosbot.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
services:
rosbot-xl:
image: husarion/rosbot-xl:humble-0.3.0-20230204
network_mode: host
ipc: host
environment:
- DDS_CONFIG
- RMW_IMPLEMENTATION
command: ros2 launch rosbot_xl_bringup bringup.launch.py mecanum:=${MECANUM:-True}
microros:
image: husarion/micro-ros-agent:humble-3.1.2-20230204-stable
network_mode: host
ipc: host
environment:
- DDS_CONFIG
- RMW_IMPLEMENTATION=rmw_fastrtps_cpp
command: ros2 run micro_ros_agent micro_ros_agent udp4 --port 8888
rplidar:
image: husarion/rplidar:humble-1.0.1-20230206-stable
network_mode: host
ipc: host
devices:
- ${LIDAR_SERIAL:?err}:/dev/ttyUSB0
environment:
- DDS_CONFIG
- RMW_IMPLEMENTATION
command: ros2 launch sllidar_ros2 sllidar_launch.py serial_baudrate:=${LIDAR_BAUDRATE:-115200}
navigation:
image: husarion/navigation2:humble-1.1.5-20230206-stable
network_mode: host
ipc: host
volumes:
- ./config/${NAV2_PARAMS:-nav2_params.yaml}:/nav2_params.yaml
# modified behaviour tree that doesn't replan global path
# (it is used only when specified by default_nav_to_pose_bt_xml parameter)
- ./config/navigate_w_recovery.xml:/navigate_w_recovery.xml
environment:
- DDS_CONFIG
- RMW_IMPLEMENTATION
command: >
ros2 launch nav2_bringup navigation_launch.py
params_file:=/nav2_params.yaml
use_sim_time:=${USE_SIM_TIME:-False}
localization:
image: husarion/navigation2:humble-1.1.5-20230206-stable
network_mode: host
ipc: host
volumes:
- ./config/${AMCL_PARAMS:-amcl_params.yaml}:/amcl_params.yaml
- ./maps:/maps
environment:
- DDS_CONFIG
- RMW_IMPLEMENTATION
command: >
ros2 launch nav2_bringup localization_launch.py
params_file:=/amcl_params.yaml
map:=/maps/map.yaml
use_sim_time:=${USE_SIM_TIME:-False}