-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (29 loc) · 806 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (29 loc) · 806 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
version: '3.4'
services:
visual-inertial-odometry-cpu:
build:
context: .
dockerfile: cpu.Dockerfile
network: host
image: shenlanxueyuan/visual-inertial-odometry-cpu:latest
container_name: visual-inertial-odometry-cpu
privileged: true
volumes:
# workspace:
- ${PWD}/workspace/assignments:/workspace/assignments
# data:
- ${PWD}/workspace/data:/workspace/data
# Sophus:
- ${PWD}/Sophus:/workspace/Sophus
ports:
# standard vnc client:
- 45901:5900
# supervisord admin:
- 49001:9001
visual-inertial-odometry-gpu:
build:
context: .
dockerfile: gpu.Dockerfile
network: host
image: shenlanxueyuan/visual-inertial-odometry-gpu:latest
container_name: visual-inertial-odometry-gpu