hopefully the last one
This commit is contained in:
@@ -19,4 +19,8 @@ queue_state.json
|
||||
search_demo.py
|
||||
celery_worker.log
|
||||
static/js/*
|
||||
logs/
|
||||
logs/
|
||||
.env.example
|
||||
.env
|
||||
.venv
|
||||
data
|
||||
|
||||
13
.env
13
.env
@@ -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
20
.env.example
Normal 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
3
.gitignore
vendored
@@ -36,4 +36,5 @@ logs/spotizerr.log
|
||||
/.venv
|
||||
static/js
|
||||
data
|
||||
logs/
|
||||
logs/
|
||||
.env
|
||||
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user