-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (38 loc) · 959 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
services:
ros2-mitsubishi-novnc:
image: ros2-mitsubishi-novnc:latest
build:
context: ./novnc
dockerfile: Dockerfile
container_name: ros2-mitsubishi-novnc
networks:
demo-ros2:
ipv4_address: 172.36.0.3
ports:
- "8080:8080"
ros2-mitsubishi-moveit:
image: ros2-mitsubishi-moveit:latest
container_name: ros2-mitsubishi-moveit
build:
context: .
dockerfile: Dockerfile
environment:
- DISPLAY=172.36.0.3:0.0
- ROBOT_IP= # YOUR_ROBOT_IP
- ROBOT_UDP_PORT=10000
- ROBOT_TCP_PORT=10003
- HOST_IP= # YOUR_HOST_IP
depends_on:
- ros2-mitsubishi-novnc
volumes:
- ./src:/root/ros2_ws/src
network_mode: host
stdin_open: true
tty: true
networks:
demo-ros2:
name: demo-ros2
driver: bridge
ipam:
config:
- subnet: "172.36.0.0/24"