-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (48 loc) · 1.09 KB
/
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
49
50
51
52
version: '3.8'
services:
asv:
image: ghcr.io/vortexntnu/vortex-asv:main
container_name: asv
environment:
DISPLAY: :0
stdin_open: true
tty: true
network_mode: host
asv-dev:
build:
context: .
dockerfile: Dockerfile.dev
container_name: asv-dev
user: vortex
privileged: true
volumes:
- ".:/home/vortex/asv_ws/src/Vortex-ASV" # Shared volume to avoid rebuilding when starting a new container
- "/dev:/dev"
environment:
DISPLAY: :0
stdin_open: true
tty: true
network_mode: host
lidar:
image: ghcr.io/vortexntnu/ouster_lidar_driver:master
command:
- "sensor_hostname:=XXX.XXX.XXX.XXX"
- "metadata:=/lidar_metadata"
container_name: lidar
environment:
DISPLAY: :0
stdin_open: true
tty: true
network_mode: host
simulator:
image: ghcr.io/vortexntnu/vortex-asv-simulator:main
container_name: simulator
user: vortex
privileged: true
volumes:
- "/dev:/dev"
environment:
DISPLAY: :0
stdin_open: true
tty: true
network_mode: host