init
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user