1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +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

View File

@ -162,6 +162,7 @@ A collection of delicious docker recipes.
- [x] mpd :musical_note:
- [x] murmur
- [x] openmeetings :camera:
- [x] paddle-ocr
- [x] plex :moneybag:
- [x] red5 :+1:
- [x] red5-arm :construction:
@ -306,6 +307,7 @@ A collection of delicious docker recipes.
- [x] daskdev
- [x] dask
- [x] dask-notebook
- [x] deepquestai/deepstack
- [x] appbaseio/dejavu :mag:
- [x] cachethq/docker
- [x] satishweb/doh-server

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

View File

@ -5,7 +5,7 @@
FROM arm32v7/alpine:3
MAINTAINER EasyPi Software Foundation
ENV OWNCAST_VERSION=0.0.8
ENV OWNCAST_VERSION=0.0.10
ENV OWNCAST_FILE=owncast-${OWNCAST_VERSION}-linux-arm7.zip
ENV OWNCAST_URL=https://github.com/owncast/owncast/releases/download/v${OWNCAST_VERSION}/${OWNCAST_FILE}