1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-11-27 22:28:31 +02:00

add deepstack

This commit is contained in:
kev
2021-10-11 13:48:48 +08:00
parent c3795ba178
commit 3a19989f22
4 changed files with 38 additions and 1 deletions

9
deepstack/README.md Normal file
View File

@@ -0,0 +1,9 @@
deepstack
=========
![](https://deepquest.sfo2.digitaloceanspaces.com/deepstackcc/static/img/deepstacklogo.png)
[DeepStack][1] is an Open-Source AI API engine that serves pre-built models and
custom models on multiple edge devices locally or on your private cloud.
[1]: https://deepstack.cc/

View File

@@ -0,0 +1,26 @@
version: "3.8"
services:
deepstack-ui:
image: robmarkcole/deepstack-ui
ports:
- "8501:8501"
environment:
- DEEPSTACK_IP=deepstack
- DEEPSTACK_PORT=5000
- DEEPSTACK_TIMEOUT=20
restart: unless-stopped
deepstack:
image: deepquestai/deepstack
ports:
- "5000:5000"
volumes:
- ./data:/datastore
environment:
- MODE=Medium
- VISION-DETECTION=True
- VISION-FACE=True
- VISION-SCENE=True
restart: unless-stopped