mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-09-11 06:44:31 +00:00
Renames across the entire codebase: - slopsmith/Slopsmith/SLOPSMITH/SlopSmith -> feedBack/FeedBack/FEEDBACK/FeedBack - byron/Byron/Byrongamatos -> got-feedBack/got-feedBack/got-feedBack - /home/byron/ -> /opt/got-feedBack/ - byron@ougsoft.com -> hi@got-feedBack.org - github.com/byrongamatos/ -> github.com/got-feedback/ - com.byron. -> com.got-feedback. - SLOPSMITH_ env vars -> FEEDBACK_ with backward-compat fallback - Protocol/storage strings migrated with read-old/write-new pattern - window.slopsmith JS API -> window.feedBack (canonical) + backward-compat alias Refs: #rename-slopsmith
24 lines
657 B
YAML
24 lines
657 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
# Song library folder on NAS
|
|
- /volume1/music/feedBack:/dlc
|
|
# Persistent config, cache, favorites, loops, practice data
|
|
- feedBack-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/feedBack.log # also write to a persistent file
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
feedBack-config:
|