feat: add Dockerfile and docker-compose.yml for containerization

This commit is contained in:
V1ck3s
2025-12-13 00:58:23 +01:00
committed by Vickes
parent 3a43196f8a
commit 211f0c617c
2 changed files with 46 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
octo-fiesta:
build: .
container_name: octo-fiesta
restart: unless-stopped
ports:
- "5274:8080"
environment:
- ASPNETCORE_ENVIRONMENT=Production
# Navidrome/Subsonic server URL
- Subsonic__Url=${SUBSONIC_URL:-http://localhost:4533}
# Download path inside container
- Library__DownloadPath=/app/downloads
# Deezer ARL token (required)
- Deezer__Arl=${DEEZER_ARL}
# Fallback ARL token (optional)
- Deezer__ArlFallback=${DEEZER_ARL_FALLBACK:-}
volumes:
- ${DOWNLOAD_PATH:-./downloads}:/app/downloads