forked from DukeRobotics/robosub-ros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (44 loc) · 853 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
42
43
44
45
46
47
48
version: "3.3"
services:
onboard:
image: dukerobotics/robosub-ros:onboard
container_name: onboard
environment:
- ROBOT_NAME=oogway
privileged: true
ports:
- 2200:2200
- 8765:8765
networks:
local_net:
ipv4_address: 192.168.1.1
tty: true
dns:
- 8.8.8.8
- 8.8.4.4
volumes:
- type: bind
source: .
target: /root/dev/robosub-ros
landside:
image: dukerobotics/robosub-ros:landside
container_name: landside
ports:
- 2201:2201
networks:
local_net:
ipv4_address: 192.168.1.2
tty: true
dns:
- 8.8.8.8
- 8.8.4.4
volumes:
- type: bind
source: .
target: /root/dev/robosub-ros
networks:
local_net:
driver: bridge
ipam:
config:
- subnet: 192.168.0.0/23