-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (30 loc) · 797 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
34 lines (30 loc) · 797 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
version: '3'
services:
roscore:
container_name: roscore
image: ros:indigo-didi
build: ros-indigo
command: roscore
ports:
- "11411:11411"
networks:
- ros
rosvelodyne:
container_name: rosvelodyne
image: ros:indigo-didi
build: ros-indigo
#command: rosrun velodyne_pointcloud cloud_node _calibration:=./data/calibration.yaml
#command: rosrun velodyne_pointcloud cloud_node
command: rosrun nodelet nodelet standalone velodyne_pointcloud/TransformNodelet _calibration:=./data/calibration1.yaml
environment:
- "ROS_HOSTNAME=rosvelodyne"
- "ROS_MASTER_URI=http://roscore:11311"
volumes:
- ./data:/usr/share/didi/data
networks:
- ros
depends_on:
- roscore
networks:
ros:
driver: bridge