24 lines
684 B
Bash
24 lines
684 B
Bash
# Tautulli Docker Compose Environment Variables
|
|
|
|
# Image version tag (e.g. "latest", "v2.14.6")
|
|
TAUTULLI_VERSION=latest
|
|
|
|
# User and group ID the container runs as (match your host user to avoid permission issues)
|
|
TAUTULLI_PUID=1000
|
|
TAUTULLI_PGID=1000
|
|
|
|
# Timezone for the container (e.g. America/Los_Angeles, America/New_York)
|
|
TAUTULLI_TZ=America/Los_Angeles
|
|
|
|
# Host port to expose the Tautulli web UI on
|
|
TAUTULLI_PORT=8181
|
|
|
|
# Bind mount path on the host for the Tautulli config directory (e.g. /opt/tautulli/config)
|
|
TAUTULLI_CONFIG_PATH=
|
|
|
|
# NFS server hostname or IP address
|
|
TAUTULLI_NFS_SERVER=
|
|
|
|
# NFS export path on the server (e.g. :/mnt/pool/tautulli/config)
|
|
TAUTULLI_NFS_DEVICE=
|