mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 16:46:17 +00:00
16 lines
365 B
YAML
16 lines
365 B
YAML
services:
|
|
soundtouch-service:
|
|
build: .
|
|
container_name: soundtouch-service
|
|
# network_mode: host # Linux only, required for discovery
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- PORT=8000
|
|
- DATA_DIR=/app/data
|
|
- LOG_PROXY_BODY=false
|
|
- REDACT_PROXY_LOGS=true
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|