29 lines
1.6 KiB
Bash
29 lines
1.6 KiB
Bash
# Copy to .env and adjust. .env is git-ignored; this file is not.
|
|
# Never put a real secret in this file.
|
|
|
|
# ─── Shared settings ────────────────────────────────────────────────
|
|
# compose.yaml already defaults these to 1000/1000/Etc/UTC. Three places
|
|
# can set them, in increasing priority:
|
|
#
|
|
# 1. the defaults in compose.yaml (a fresh clone just works)
|
|
# 2. this file (per-service)
|
|
# 3. exported in your shell (global, wins over this file)
|
|
#
|
|
# If you keep a global `export PUID=...` in ~/.profile, leave these commented.
|
|
#PUID=1000
|
|
#PGID=1000
|
|
#TZ=Europe/Paris
|
|
|
|
# ─── Paths ──────────────────────────────────────────────────────────
|
|
# Where persistent data lives. Keep it OUTSIDE the repo so a clone stays
|
|
# clean and a `git status` never shows application state.
|
|
#DATA_PATH=./data
|
|
|
|
# ─── Ports ──────────────────────────────────────────────────────────
|
|
# Host port for the web UI. Defaulted in compose.yaml.
|
|
#PORT=xxxx
|
|
|
|
# ─── Required ───────────────────────────────────────────────────────
|
|
# Anything written ${VAR:?...} in compose.yaml belongs here, uncommented,
|
|
# with a note on how to find the right value for this host.
|