This commit is contained in:
2026-03-10 14:40:51 -03:00
parent 290f05be87
commit 92713a4d1c
30 changed files with 2074 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
version: "3.8"
services:
label-studio:
image: heartexlabs/label-studio:latest
container_name: label-studio
restart: unless-stopped
ports:
- "${LS_PORT:-8080}:8080"
volumes:
- label_studio_data:/label-studio/data
environment:
- LABEL_STUDIO_LOCAL_FILES_SERVING_ENABLED=true
- LABEL_STUDIO_LOCAL_FILES_DOCUMENT_ROOT=/label-studio/data/files
- LABEL_STUDIO_USERNAME=${LS_USER:-admin@example.com}
- LABEL_STUDIO_PASSWORD=${LS_PASSWORD:-changeme}
volumes:
label_studio_data: