forked from leandrobmarinho/analytics-presentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (48 loc) · 1.31 KB
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (48 loc) · 1.31 KB
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
version: "3.9"
services:
# face_recognition:
# build: ./face-recognition
# dns:
# - 8.8.8.8
# volumes:
# - ./stream:/home/stream
# - ./resources:/home/face-recognition/resources
# - ./face-recognition:/home/face-recognition
# - /tmp/.X11-unix:/tmp/.X11-unix
# runtime: nvidia
# environment:
# - NVIDIA_VISIBLE_DEVICES=all
age_emotion_detector:
build: ./age-emotion-detector
dns:
- 8.8.8.8
volumes:
- ./stream:/home/stream
- ./resources:/home/age-emotion-detector/resources
- ./age-emotion-detector:/home/age-emotion-detector
- /tmp/.X11-unix:/tmp/.X11-unix
runtime: nvidia
environment:
- NVIDIA_VISIBLE_DEVICES=all
people_counting:
build: ./people-counting
dns:
- 8.8.8.8
volumes:
- ./stream:/home/stream
- ./people-counting:/home/people-counting
- ./heatmap_images:/home/people-counting/heatmap_images
- /tmp/.X11-unix:/tmp/.X11-unix
runtime: nvidia
environment:
- NVIDIA_VISIBLE_DEVICES=all
stream:
build: ./stream
volumes:
- ./stream:/home/stream
- /tmp/.X11-unix:/tmp/.X11-unix
devices:
- "/dev/video0:/dev/video0"
- "/dev/video1:/dev/video1"
# - "/dev/video2:/dev/video2"
# - "/dev/video3:/dev/video3"