mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add label-studio
This commit is contained in:
parent
91e43a9a0a
commit
ced056f4d0
@ -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
6
label-studio/README.md
Normal 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/
|
32
label-studio/docker-compose.yml
Normal file
32
label-studio/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user