Files
alchemist/docker-compose.yml
bybrooklyn 095b648757 Release v0.2.9: runtime reliability and admin UX refresh
- ship runtime reliability, watcher/scanner hardening, and hardware hot reload

- refresh admin/settings UX and add Playwright reliability coverage

- standardize frontend workflow on Bun and update deploy/docs
2026-03-05 22:22:06 -05:00

35 lines
914 B
YAML

services:
alchemist:
image: ghcr.io/brooklynloveszelda/alchemist:latest
container_name: alchemist
restart: unless-stopped
ports:
- "3000:3000"
volumes:
# Configuration file
- ./config.toml:/app/config/config.toml:ro
# Media directories (adjust paths as needed)
- /path/to/media:/media
- /path/to/output:/output
# Persistent database
- alchemist_data:/app/data
environment:
- RUST_LOG=info
- TZ=America/New_York
- ALCHEMIST_CONFIG_PATH=/app/config/config.toml
- ALCHEMIST_DB_PATH=/app/data/alchemist.db
- ALCHEMIST_CONFIG_MUTABLE=false
# For Intel QuickSync (uncomment if needed)
# devices:
# - /dev/dri:/dev/dri
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
alchemist_data: