33 lines
863 B
Bash
33 lines
863 B
Bash
# Only sqlite3 works by default
|
|
DATABASE_URL=sqlite:////config/db.sqlite3
|
|
|
|
# Path to download torrents to.
|
|
# In this setup, we juse use a docker volume as the downloads aren't meant to stay on the system after being watched
|
|
# You can change this to a directory if you wish to download to the host's file system instead
|
|
HOST_DOWNLOAD_PATH=downloads
|
|
|
|
# Redis host; shouldn't be changed
|
|
REDIS_HOST=redis
|
|
|
|
# Config path for nefarious inside container; leave as is
|
|
NEFARIOUS_CONFIG_PATH=/config
|
|
|
|
# Admin user credentials
|
|
NEFARIOUS_USER=admin
|
|
NEFARIOUS_PASS=changeme
|
|
|
|
# Transmission user credentials
|
|
# These are only needed if you wish to expose the transmission server
|
|
TRANSMISSION_USER=
|
|
TRANSMISSION_PASS=
|
|
|
|
# UID and GID to run as
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
# Timezone
|
|
TZ=Europe/London
|
|
|
|
# How many worker processes celery may use; if 0, uses all cpu cores
|
|
CELERY_WORKERS=0
|