42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Pinchflat
|
|
|
|
# Docker image tag to use (e.g. "latest" or a pinned version like "v2024.5.30")
|
|
PINCHFLAT_VERSION=latest
|
|
|
|
# IANA timezone name for the container (e.g. America/Chicago, America/New_York)
|
|
PINCHFLAT_TZ=America/Los_Angeles
|
|
|
|
# Host port to expose the Pinchflat web UI on
|
|
PINCHFLAT_PORT=8945
|
|
|
|
# Host path where downloaded media will be stored
|
|
PINCHFLAT_DOWNLOAD=/path/to/downloads
|
|
|
|
# Auth - required for production
|
|
|
|
# Username for HTTP basic auth on the web UI
|
|
PINCHFLAT_AUTH_USER=admin
|
|
|
|
# Password for HTTP basic auth — use a strong random value
|
|
PINCHFLAT_AUTH_PASS=changeme
|
|
|
|
# Secret used to sign/encrypt session cookies — generate with: openssl rand -hex 64
|
|
# Changing this will invalidate all active sessions
|
|
PINCHFLAT_SECRET_KEY=
|
|
|
|
# Controls default permissions on created files (022 = owner rw, group/other r)
|
|
PINCHFLAT_UMASK=022
|
|
|
|
# Bind mount only
|
|
|
|
# Host path for the config directory (SQLite DB, logs, metadata)
|
|
PINCHFLAT_CONFIG=/path/to/config
|
|
|
|
# NFS only
|
|
|
|
# IP address or hostname of the NFS server
|
|
PINCHFLAT_NFS_SERVER=192.168.1.x
|
|
|
|
# NFS export path on the server (e.g. :/mnt/pool/pinchflat)
|
|
PINCHFLAT_NFS_DEVICE=:/path/to/nfs/share
|