-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (47 loc) · 939 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (47 loc) · 939 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
37
38
39
40
41
42
43
44
45
46
47
version: "3.9"
services:
ros2-tutorial:
hostname: 'ros2-tutorial'
build:
context: ./docker/
dockerfile: ros2_tutorial.dockerfile
network: host
args:
USERSHELL: zsh
volumes:
- ./ros2_tutorial:/root/dev_ws
working_dir: /root/
tty: true
environment:
DISPLAY: "novnc:0.0"
networks:
- x11
wasim:
hostname: 'wasim'
build:
context: ./docker/
dockerfile: ros2_tutorial.dockerfile
network: host
args:
USERSHELL: zsh
volumes:
- ./ros2_tutorial:/root/dev_ws
working_dir: /root/
tty: true
network_mode: host
environment:
DISPLAY: "novnc:0.0"
novnc:
hostname: 'novnc'
image: theasp/novnc:latest
environment:
DISPLAY_WIDTH: 5000
DISPLAY_HEIGHT: 5000
RUN_XTERM: "no"
RUN_FLUXBOX: "yes"
ports:
- "8080:8080"
networks:
- x11
networks:
x11: