hopefully the last one

This commit is contained in:
cool.gitter.not.me.again.duh
2025-05-29 18:20:58 -06:00
parent 3ac8e2c4cb
commit 668647a388
6 changed files with 30 additions and 18 deletions

View File

@@ -19,4 +19,8 @@ queue_state.json
search_demo.py
celery_worker.log
static/js/*
logs/
logs/
.env.example
.env
.venv
data

13
.env
View File

@@ -1,13 +0,0 @@
# Docker Compose environment variables
# Redis connection (external or internal)
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=CHANGE_ME
EXPLICIT_FILTER=false # Set to true to filter out explicit content
PUID=1000 # User ID for the container
PGID=1000 # Group ID for the container
UMASK=0022 # Optional: Sets the default file permissions for newly created files within the container.

20
.env.example Normal file
View File

@@ -0,0 +1,20 @@
# Docker Compose environment variables# Delete all comments of this when deploying (everything that is )
# Redis connection (external or internal)
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=CHANGE_ME
# Set to true to filter out explicit content
EXPLICIT_FILTER=false
# User ID for the container
PUID=1000
# Group ID for the container
PGID=1000
# Optional: Sets the default file permissions for newly created files within the container.
UMASK=0022

3
.gitignore vendored
View File

@@ -36,4 +36,5 @@ logs/spotizerr.log
/.venv
static/js
data
logs/
logs/
.env

View File

@@ -33,8 +33,8 @@ RUN npm install -g typescript
RUN tsc
# Create necessary directories with proper permissions
RUN mkdir -p downloads config creds logs && \
chmod 777 downloads config creds logs
RUN mkdir -p downloads data/config data/creds data/watch data/history logs/tasks && \
chmod -R 777 downloads data logs
# Make entrypoint script executable
RUN chmod +x entrypoint.sh

View File

@@ -8,7 +8,7 @@ services:
- ./logs:/app/logs # <-- Volume for persistent logs
ports:
- 7171:7171
image: test
image: cooldockerizer9/spotizerr
container_name: spotizerr-app
restart: unless-stopped
environment: