feat: added new variables to envrionment sample file
This commit is contained in:
parent
c291d99686
commit
64d8c3bbdb
1 changed files with 29 additions and 17 deletions
46
.env.sample
46
.env.sample
|
|
@ -1,3 +1,4 @@
|
|||
# shellcheck disable=SC2034
|
||||
## Here you edit/update your settings that will be used for your docker-compose
|
||||
## This will only work if you follow exactly the path structure in the Guide !!!
|
||||
COMPOSE_PROJECT_NAME=
|
||||
|
|
@ -6,19 +7,19 @@ COMPOSE_PROJECT_NAME=
|
|||
# <change "/volume1/docker/appdata" with the path your configs will be>
|
||||
DOCKERCONFDIR=
|
||||
# <change "/volume1/data" with the path where your library + torrent/usenet downloads both are>
|
||||
DOCKERSTORAGEDIR=/
|
||||
DOCKERSTORAGEDIR=
|
||||
# <you must find out your PUID/PGID through SSH, run in terminal: id $user. If needed, change $user to the user you created.>
|
||||
PUID=
|
||||
PGID=
|
||||
# <change to your timezone>
|
||||
TZ=
|
||||
# Dockerlogging and max size
|
||||
DOCKERLOGGING_MAXFILE=
|
||||
DOCKERLOGGING_MAXSIZE=
|
||||
DOCKERLOGGING_MAXFILE=3
|
||||
DOCKERLOGGING_MAXSIZE=10m
|
||||
|
||||
# Diun - Docker Image Update Notifier (monitors only, doesn't auto-update)
|
||||
# Watch schedule: Cron format (e.g., "0 */6 * * *" for every 6 hours)
|
||||
DIUN_WATCH_SCHEDULE=0 */6 * * *
|
||||
DIUN_WATCH_SCHEDULE=
|
||||
# Discord Webhook: Use the actual Discord webhook URL directly
|
||||
# Get webhook URL from Discord: Server Settings > Integrations > Webhooks > Copy Webhook URL
|
||||
# Format: https://discord.com/api/webhooks/WEBHOOK_ID/TOKEN
|
||||
|
|
@ -27,23 +28,34 @@ DIUN_WATCH_SCHEDULE=0 */6 * * *
|
|||
DIUN_DISCORD_WEBHOOK_URL=
|
||||
|
||||
# VPN
|
||||
FIREWALL_VPN_INPUT_PORTS=
|
||||
WIREGUARD_PRIVATE_KEY=
|
||||
WIREGUARD_PRESHARED_KEY=
|
||||
WIREGUARD_ADDRESSES=
|
||||
FIREWALL_VPN_INPUT_PORTS=
|
||||
SERVER_COUNTRIES=
|
||||
|
||||
# PostgreSQL Configuration
|
||||
POSTGRES_USER=
|
||||
POSTGRES_PASSWORD=
|
||||
POSTGRES_DB=
|
||||
POSTGRES_URL=
|
||||
POSTGRES_PORT=
|
||||
SONARR_API_KEY=
|
||||
RADARR_API_KEY=
|
||||
|
||||
# pgAdmin Configuration
|
||||
PGADMIN_EMAIL=
|
||||
PGADMIN_PASSWORD=
|
||||
# Gramps config
|
||||
TREE=
|
||||
BASE_URL=
|
||||
SECRET_KEY=
|
||||
USER_DB_URI=
|
||||
|
||||
# Google OAuth
|
||||
GRAMPSWEB_OIDC_GOOGLE_CLIENT_ID=
|
||||
GRAMPSWEB_OIDC_GOOGLE_CLIENT_SECRET=
|
||||
OIDC_ISSUER=
|
||||
OIDC_CLIENT_ID=
|
||||
OIDC_CLIENT_SECRET=
|
||||
OIDC_NAME=
|
||||
OIDC_SCOPES=
|
||||
OIDC_AUTO_REDIRECT=
|
||||
OIDC_DISABLE_LOCAL_AUTH=
|
||||
|
||||
OIDC_GOOGLE_CLIENT_ID=
|
||||
OIDC_GOOGLE_CLIENT_SECRET=
|
||||
|
||||
EMAIL_HOST=
|
||||
EMAIL_PORT=
|
||||
EMAIL_HOST_USER=
|
||||
EMAIL_HOST_PASSWORD=
|
||||
DEFAULT_FROM_EMAIL=
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue