-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
50 lines (48 loc) · 1.11 KB
/
docker-compose.yaml
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
version: '3.3'
services:
detection-gpu:
platform: linux/x86_64
build:
context: ./individual-detection
dockerfile: Dockerfile
runtime: nvidia
image: deep-detection-gpu
container_name: deep-detection-gpu
volumes:
- type: bind
source: /data/detection
target: /workspace/data
tty: true
tracker:
build:
context: ./individual-tracking
dockerfile: Dockerfile
image: deep-tracker
container_name: deep-tracker
volumes:
- type: bind
source: /data/tracking
target: /workspace/data
tty: true
monitoring:
build:
context: ./stats-monitoring
dockerfile: Dockerfile
image: deep-monitoring
container_name: deep-monitoring
volumes:
- type: bind
source: /data/monitoring
target: /workspace/data
tty: true
# annotator:
# build:
# context: ./density-annotator
# dockerfile: Dockerfile
# image: deep-annotator
# container_name: deep-annotator
# volumes:
# - type: bind
# source: /data
# target: /workspace/data
# tty: true