This commit is contained in:
2026-06-13 01:45:28 +00:00
commit 158a687f02
29 changed files with 42379 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# HEY, YOU! READ THE DOCS BEFORE YOU DO ANYTHING!
# https://spotizerr.rtfd.io
services:
spotizerr:
image: spotizerrphoenix/spotizerr
container_name: spotizerr
user: "1000:1000"
volumes:
- ./data:/app/data
- /mnt/qnas_vault/Music:/app/downloads
- ./logs:/app/logs
- ./.cache:/app/.cache
ports:
- 7171:7171
restart: unless-stopped
env_file:
- .env
depends_on:
- redis
redis:
image: redis:alpine
container_name: spotizerr-redis
restart: unless-stopped
env_file:
- .env
volumes:
- redis-data:/data
command: sh -c 'redis-server --requirepass "$REDIS_PASSWORD" --appendonly yes'
volumes:
redis-data:
driver: local