forked from basler/pylon-ros-camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
23 lines (22 loc) · 1006 Bytes
/
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
version: '3.8'
services:
basler_ros_driver_pkg: # <-- YOUR TODO: change to name of your repository
# depends_on:
# - master
# - <package> # <-- YOUR TODO: change dependencies to other packages
build:
context: .
dockerfile: Dockerfile
image: basler_ros_driver_pkg:latest # <-- YOUR TODO: change to name of your repository
restart: unless-stopped
environment:
- PACKAGE_NAME=basler_ros_driver_pkg # <-- YOUR TODO: change to name of your repository
# - ROS_MASTER_URI=http://master:11311
volumes:
- ./:/ws/src/basler_ros_driver_pkg # <-- YOUR TODO: change to name of your repository
privileged: true
entrypoint: chmod +x /ws/src/basler_ros_driver_pkg/docker-entrypoint.sh && /ws/src/basler_ros_driver_pkg/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