-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (49 loc) · 1.33 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.9"
services:
acar:
build:
context: .
dockerfile: acar.Dockerfile
image: git.uwaterloo.ca:5050/watonomous/registry/action-classification/acar
volumes:
- /path/to/road/data:/road
- ./modules/ACAR-Net:/project/ACAR-Net
ipc: host
tty: true
deploy:
resources:
reservations:
devices:
- driver: nvidia
device_ids: ['0', '1'] # Change to ['0', '1'] to use two GPUs
capabilities: [gpu]
ocsort:
build:
context: .
dockerfile: ocsort.Dockerfile
image: git.uwaterloo.ca:5050/watonomous/registry/action-classification/ocsort
volumes:
- /path/to/road/data:/road
- ./modules/OC-SORT:/project/OC-SORT
ipc: host
tty: true
builder:
build:
context: .
dockerfile: builder.Dockerfile
image: git.uwaterloo.ca:5050/watonomous/registry/action-classification/video-builder
volumes:
- /path/to/road/data:/road
- ./modules/Video-Builder:/project/Video-Builder
ipc: host
tty: true
post:
build:
context: .
dockerfile: post.Dockerfile
image: git.uwaterloo.ca:5050/watonomous/registry/action-classification/post-processing
volumes:
- /path/to/road/data:/road
- ./modules/Post-Processing:/project/Post-Processing
ipc: host
tty: true