ta-organizerr/docker-compose.yml
wander aa94920650 feat: modernize UI with Astro+Svelte and optimize Docker build
- Migrated frontend to Astro + Svelte 5 for cyberpunk aesthetic
- Switched to Bun for faster frontend builds
- Implemented multi-stage Docker build for smaller image size
- Refactored backend to serve static assets and proxy API requests
- Added recovery mode for manual file management
2026-02-04 15:30:04 -05:00

20 lines
643 B
YAML

services:
ta-organizer:
build: .
# image: ghcr.io/salpertio/ta-organizerr:latest
container_name: ta-organizer
volumes:
- ./source:/app/source
- ./target:/app/target
- ./data:/app/data
- ./import:/app/import
ports:
- "8002:5000"
environment:
- SCAN_INTERVAL=60
- ALLOWED_IPS=127.0.0.1,192.168.1.0/24,10.0.0.0/8,172.16.0.0/12
- API_URL=http://host.docker.internal:8457/api # Update this if Tube Archivist is on a different IP/Port
- VIDEO_URL=http://host.docker.internal:8457/video/
# - UI_USERNAME=admin
# - UI_PASSWORD=password
# env_file: .env