forked from vectr-ucla/direct_lidar_inertial_odometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
51 lines (40 loc) · 1.75 KB
/
docker-compose.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
version: '3.8'
### -----------ROS MASTER----------------- ###
# Do not edit! Works with melodic and noetic
services:
### -----------PACKAGE----------------- ###
direct_lidar_inertial_odometry:
build:
context: ./
dockerfile: Dockerfile
restart: unless-stopped
environment:
- PACKAGE_NAME=direct_lidar_inertial_odometry
volumes:
- ./:/ws/src/direct_lidar_inertial_odometry
network_mode: host
entrypoint: /ws/src/direct_lidar_inertial_odometry/docker-entrypoint.sh
command: bash -c "source devel/setup.bash && sleep infinity"
# version: '3.8'
# services:
# direct_lidar_inertial_odometry: # <-- YOUR TODO: change to name of your repository
# # depends_on:
# # - master
# # - <package> # <-- YOUR TODO: change dependencies to other packages
# build:
# context: .
# dockerfile: Dockerfile
# image: direct_lidar_inertial_odometry:latest # <-- YOUR TODO: change to name of your repository
# restart: unless-stopped
# environment:
# - PACKAGE_NAME=direct_lidar_inertial_odometry # <-- YOUR TODO: change to name of your repository
# # - ROS_MASTER_URI=http://master:11311
# volumes:
# - ./:/ws/src/direct_lidar_inertial_odometry # <-- YOUR TODO: change to name of your repository
# # - ./fs_msgs:/ws/src/fs_msgs
# # entrypoint: chmod +x /ws/src/fastslam2/docker-entrypoint.sh && /ws/src/fastslam2/docker-entrypoint.sh # <-- YOUR TODO: change to name of your repository
# entrypoint: /ws/src/direct_lidar_inertial_odometry/docker-entrypoint.sh # <-- YOUR TODO: change to name of your repository
# command: sh -c "while true; do sleep 1; done"
# networks:
# ros_network:
# driver: bridge