mirror of
https://github.com/bybrooklyn/alchemist.git
synced 2026-04-18 09:53:33 -04:00
32 lines
765 B
YAML
32 lines
765 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.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
|
|
# For Intel QuickSync (uncomment if needed)
|
|
# devices:
|
|
# - /dev/dri:/dev/dri
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu]
|
|
|
|
volumes:
|
|
alchemist_data:
|