added env example file

This commit is contained in:
2026-05-11 00:51:39 -07:00
parent 896d845256
commit 998e7da6e4
+30
View File
@@ -0,0 +1,30 @@
# -----------------------------------------------
# BabyBuddy - Docker Compose Environment Variables
# -----------------------------------------------
# Image version tag (e.g. "latest" or a pinned version like "2.5.1")
BABYBUDDY_VERSION=latest
# Host port to expose the BabyBuddy web UI on
BABYBUDDY_PORT=8000
# User and group ID the container process runs as (match your host user to avoid permission issues)
BABYBUDDY_PUID=1000
BABYBUDDY_PGID=1000
# Timezone for the container (e.g. America/New_York, Europe/London)
BABYBUDDY_TZ=America/Los_Angeles
# Comma-separated list of trusted origins for Django CSRF protection
# Must include the scheme and host/port you access the app from
BABYBUDDY_ORIGINS=http://127.0.0.1:8000
# -----------------------------------------------
# NFS Volume Configuration
# -----------------------------------------------
# IP address or hostname of the NFS server
AIRTRAIL_NFS_SERVER=192.168.1.x
# NFS export path on the server (e.g. /mnt/pool/docker/babybuddy)
AIRTRAIL_NFS_DEVICE=:/mnt/pool/docker/babybuddy