add label-studio

This commit is contained in:
kev 2022-02-14 15:33:38 +08:00
parent 91e43a9a0a
commit ced056f4d0
3 changed files with 39 additions and 0 deletions

View File

@ -360,6 +360,7 @@ A collection of delicious docker recipes.
- [x] wurstmeister/kafka
- [x] mailgun/kafka-pixy
- [x] devopsfaith/krakend
- [x] heartexlabs/label-studio
- [x] mailhog/mailhog
- [x] tootsuite/mastodon
- [x] getmeili/meilisearch :mag:

6
label-studio/README.md Normal file
View File

@ -0,0 +1,6 @@
label-studio
============
[Label Studio][1] is a multi-type data labeling and annotation tool with standardized output format.
[1]: https://labelstud.io/

View File

@ -0,0 +1,32 @@
version: "3.8"
services:
app:
image: heartexlabs/label-studio
ports:
- "8080:8080"
environment:
- DJANGO_DB=default
- POSTGRE_NAME=postgres
- POSTGRE_USER=postgres
- POSTGRE_PASSWORD=postgres
- POSTGRE_PORT=5432
- POSTGRE_HOST=db
volumes:
- ./data/app:/label-studio/data
depends_on:
- db
stdin_open: true
tty: true
restart: unless-stopped
db:
image: postgres:alpine-14
volumes:
- ./data/postgres:/var/lib/postgresql/data
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
restart: unless-stopped