forked from yuxiang-gao/docker-ros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-mc.yml
More file actions
36 lines (34 loc) · 956 Bytes
/
Copy pathdocker-compose-mc.yml
File metadata and controls
36 lines (34 loc) · 956 Bytes
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
version: '3.7'
services:
ros-realsense:
image: yuxianggao/ros-realsense:kinetic-arm64
environment:
- ROS_IP
- ROS_MASTER_URI
build:
context: dockers/ros-realsense
args:
ROS_DISTRO: kinetic
container_name: ros-realsense
privileged: true
network_mode: "host"
command: /bin/bash -c "roslaunch --wait realsense2_camera rs_rgbd.launch initial_reset:=true"
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
ros-zedm:
image: anniemao/ros-zedm:melodic-arm64v8
environment:
- ROS_IP
- ROS_MASTER_URI
build:
context: dockers/ros-zedm
container_name: ros-zedm
privileged: true
network_mode: "host"
command: /bin/bash -c "roslaunch --wait zed_wrapper zedm.launch"
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped