20 lines
520 B
Plaintext
20 lines
520 B
Plaintext
|
|
# Copy this file to .env and fill in your values.
|
||
|
|
# docker-compose.yml reads these automatically.
|
||
|
|
|
||
|
|
# Host port the app will be accessible on
|
||
|
|
PORT=3001
|
||
|
|
|
||
|
|
# Your timezone (used for correct date/time display)
|
||
|
|
TZ=America/New_York
|
||
|
|
|
||
|
|
# Host path where the SQLite database is stored
|
||
|
|
DATA_PATH=/mnt/user/appdata/family-planner
|
||
|
|
|
||
|
|
# Host path to your photo library (mounted read-only into the container)
|
||
|
|
PHOTOS_PATH=/mnt/user/Photos
|
||
|
|
|
||
|
|
# File ownership inside the container
|
||
|
|
# Unraid default: nobody (99) + users (100)
|
||
|
|
PUID=99
|
||
|
|
PGID=100
|