mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-07-22 04:41:23 +00:00
24 lines
661 B
YAML
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:
|