forked from Christofo/sssAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
34 lines (32 loc) · 917 Bytes
/
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
version: "3.3"
services:
sssai:
restart: unless-stopped
depends_on:
- deepstack
image: registry.gitlab.com/thiagoconde/sssai/master:latest
# image: registry.gitlab.com/thiagoconde/sssai/tests-refactors-etc:latest
container_name: ssaai
environment:
TZ: Australia/Sydney
# LOG_LEVEL: debug
volumes:
# mkdir -p ./data/captures
- ./data/captures:/captureDir
- ./data/work_dir:/work_dir
- ./cameras.json:/config/cameras.json:ro
- ./settings.json:/config/settings.json:ro
ports:
- "4242:80"
deepstack:
restart: unless-stopped
image: deepquestai/deepstack
container_name: ssaai_deepstack
env_file:
- 'deepstack.env'
volumes:
# mkdir -p ./data/deepstack
- ./data/deepstack:/datastore
# Exposing this port on the host is not necessary but can be useful for testing
# ports:
# - "5083:5000"