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: