-
Notifications
You must be signed in to change notification settings - Fork 16
/
docker-compose.yml
47 lines (43 loc) · 1.21 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
version: '3'
services:
openvino_detection_api:
build:
context: ../BMW-IntelOpenVINO-Detection-Inference-API
dockerfile: Dockerfile
image: openvino_detection.api:latest
networks:
- anonym-net
ports:
- "8081:80"
volumes:
- "../BMW-IntelOpenVINO-Detection-Inference-API/models:/models"
- "../BMW-IntelOpenVINO-Detection-Inference-API/models_hash:/models_hash"
openvino_segmentation_api:
build:
context: ../BMW-IntelOpenVINO-Segmentation-Inference-API
dockerfile: docker/Dockerfile
image: openvino_segmentation.api:latest
networks:
- anonym-net
ports:
- "8090:80"
volumes:
- "../BMW-IntelOpenVINO-Segmentation-Inference-API/models:/models"
- "../BMW-IntelOpenVINO-Segmentation-Inference-API/models_hash:/models_hash"
anonymization_api:
image: anonymize.api:latest
build:
context: .
dockerfile: docker/dockerfile
networks:
- anonym-net
ports:
- "8070:4343"
volumes:
- "./jsonFiles:/jsonFiles"
- "./src/main/anonymized_video/:/main/anonymized_video"
depends_on:
- openvino_detection_api
- openvino_segmentation_api
networks:
anonym-net: