This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
docker-compose.yml
48 lines (42 loc) · 1.65 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.2'
services:
influxdb:
build: ./docker/DockerGrafanaInfluxKit/influxdb
env_file: ./docker/DockerGrafanaInfluxKit/configuration.env
hostname: influxdb
networks:
- network
ports:
- '8086:8086'
volumes:
- influxdb_data:/var/lib/influxdb
grafana:
networks:
- network
build: ./docker/DockerGrafanaInfluxKit/grafana
env_file: ./docker/DockerGrafanaInfluxKit/configuration.env
links:
- influxdb
ports:
- '3000:3000'
volumes:
- grafana_data:/var/lib/grafana
depends_on:
- influxdb
retail-analytics:
image: retail-analytics:latest
ports:
- "5000:5000"
container_name: retail-analytics
networks:
- network
depends_on:
- influxdb
- grafana
command: ["bash", "-c", "source /opt/intel/openvino/bin/setupvars.sh && cd application && python3 smart_retail_analytics.py -fm /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/intel/face-detection-adas-0001/FP32/face-detection-adas-0001.xml -pm /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/intel/head-pose-estimation-adas-0001/FP32/head-pose-estimation-adas-0001.xml -mm /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/intel/emotions-recognition-retail-0003/FP32/emotions-recognition-retail-0003.xml -om ../resources/FP32/mobilenet-ssd.xml -pr /opt/intel/openvino/deployment_tools/open_model_zoo/tools/downloader/intel/person-detection-retail-0002/FP32/person-detection-retail-0002.xml -lb ../resources/labels.txt -ip influxdb"]
volumes:
grafana_data: {}
influxdb_data: {}
networks:
network:
driver: "bridge"