firs scratches

This commit is contained in:
architect.in.git
2025-03-17 21:43:30 -06:00
parent 9b57c5631d
commit 943ca73e34
9 changed files with 72 additions and 225 deletions

View File

@@ -1,6 +1,16 @@
name: spotizerr
services:
redis:
image: redis:alpine
container_name: spotizerr-redis
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 3
spotizerr:
volumes:
- ./creds:/app/creds
@@ -9,7 +19,15 @@ services:
ports:
- 7171:7171
image: cooldockerizer93/spotizerr
container_name: spotizerr-app
restart: unless-stopped
depends_on:
redis:
condition: service_healthy
environment:
- PUID=1000 # Replace with your desired user ID | Remove both if you want to run as root (not recommended, might result in unreadable files)
- PGID=1000 # Replace with your desired group ID | The user must have write permissions in the volume mapped to /app/downloads
- UMASK=0022 # Optional: Sets the default file permissions for newly created files within the container.
- MAX_CONCURRENT_DL=3 # Optional: Set the number of concurrent downloads allowed
- REDIS_URL=redis://redis:6379/0
- REDIS_BACKEND=redis://redis:6379/0