-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose-ros-hardware.yml
63 lines (59 loc) · 1.27 KB
/
docker-compose-ros-hardware.yml
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
# docker-compose-hardware.yml
version: '3'
services:
ros2_micro_ros_agent:
container_name: ros2_micro_ros_agent
image: frankjoshua/ros2-micro-ros-agent
network_mode: host
ipc: host
pid: host
devices:
- "/dev/teensy:/dev/ttyACM0"
restart: unless-stopped
logging:
driver: json-file
options:
max-size: '10m'
max-file: '3'
ros2_gps:
container_name: ros2_gps
image: frankjoshua/ros2-gps
network_mode: host
ipc: host
pid: host
devices:
- "/dev/gps:/dev/ttyACM0"
restart: unless-stopped
logging:
driver: json-file
options:
max-size: '10m'
max-file: '3'
ros2_imu:
container_name: ros2_imu
image: frankjoshua/ros2-imu
network_mode: host
ipc: host
pid: host
devices:
- "/dev/imu:/dev/ttyACM0"
restart: unless-stopped
logging:
driver: json-file
options:
max-size: '10m'
max-file: '3'
ros2_ydlidar_x4:
container_name: ros2_ydlidar_x4
image: frankjoshua/ros2-ydlidar-x4
network_mode: host
ipc: host
pid: host
devices:
- "/dev/ttyUSB0:/dev/ttyUSB0"
restart: unless-stopped
logging:
driver: json-file
options:
max-size: '10m'
max-file: '3'