feedBack/docker-compose.nas.yml
2026-06-16 18:47:13 +02:00

24 lines
661 B
YAML

services:
web:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
# Song library folder on NAS
- /volume1/music/slopsmith:/dlc
# Persistent config, cache, favorites, loops, practice data
- slopsmith-config:/config
environment:
- DLC_DIR=/dlc
- CONFIG_DIR=/config
# Logging (optional)
# - LOG_LEVEL=INFO # DEBUG | INFO | WARNING | ERROR (default: INFO)
# - LOG_FORMAT=json # json | text (default: text)
# - LOG_FILE=/config/slopsmith.log # also write to a persistent file
restart: unless-stopped
volumes:
slopsmith-config: