Changes: - Reviewed all docker-compose files to identify required variables - Updated all .env.example files to include ONLY variables used in their respective compose files - Changed all placeholder values to empty strings for cleaner configuration - Fixed variable name inconsistency: DOWNLOADS_DIR -> DOWNLOAD_DIR (to match main .env) - Removed unnecessary variables that aren't used by the compose files All .env.example files now: - Contain only the variables actually used in the stack - Have empty values instead of example placeholders - Match the variable names used in docker-compose files This ensures clean, minimal .env files for each stack without any extraneous variables or confusing placeholder values.
31 lines
501 B
Plaintext
31 lines
501 B
Plaintext
# Utilities Stack Environment Variables
|
|
# These variables are used for backup and utility services
|
|
|
|
# Base Configuration
|
|
DOMAIN=
|
|
TZ=
|
|
|
|
# User Configuration
|
|
PUID=
|
|
PGID=
|
|
|
|
# Directory Configuration
|
|
STACKS_DIR=
|
|
|
|
# Bitwarden Configuration
|
|
BITWARDEN_SIGNUPS_ALLOWED=
|
|
BITWARDEN_INVITATIONS_ALLOWED=
|
|
BITWARDEN_ADMIN_TOKEN=
|
|
|
|
# Form.io Configuration
|
|
FORMIO_JWT_SECRET=
|
|
FORMIO_DB_SECRET=
|
|
|
|
# SMTP Configuration (Optional for Bitwarden)
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_FROM=
|
|
SMTP_SECURITY=
|