-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (34 loc) · 839 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (34 loc) · 839 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
# docker-compose.yml
#
# NOTE - Only necessary for machines without an Nvidia GPU
# This Docker Compose configuration sets up a Drake ROS integration environment
# along with a noVNC server for remote access to the graphical interface of any
# visualization tools used in the project.
#
# Author: Adeeb Abbas
version: '3.8'
services:
ros_dev_env:
container_name: ${ROS_DEV_CONTAINER_NAME}
image: ghcr.io/imdingtalk/ros2-docker-dev:ros-noetic
build: ./
volumes:
- ${ROS_PROJECT_PATH}:/ros2_ws/src/
environment:
- DISPLAY=novnc:0.0
networks:
- x11
stdin_open: true
tty: true
novnc:
image: theasp/novnc:latest
environment:
- DISPLAY_WIDTH=2560
- DISPLAY_HEIGHT=1440
ports:
- "8080:8080"
networks:
- x11
restart: on-failure
networks:
x11: