created bind mount compose file

This commit is contained in:
2026-05-27 23:20:25 -07:00
parent f93d7b2825
commit e9c08e1419
2 changed files with 26 additions and 0 deletions
+3
View File
@@ -13,6 +13,9 @@ TAUTULLI_TZ=America/Los_Angeles
# Host port to expose the Tautulli web UI on # Host port to expose the Tautulli web UI on
TAUTULLI_PORT=8181 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 # NFS server hostname or IP address
TAUTULLI_NFS_SERVER= TAUTULLI_NFS_SERVER=
+23
View File
@@ -0,0 +1,23 @@
services:
app:
image: lscr.io/linuxserver/tautulli:${TAUTULLI_VERSION:-latest}
container_name: tautulli
environment:
- PUID=${TAUTULLI_PUID:-1000}
- PGID=${TAUTULLI_PGID:-1000}
- TZ=${TAUTULLI_TZ:-America/Los_Angeles}
volumes:
- ${TAUTULLI_CONFIG_PATH}:/config
ports:
- ${TAUTULLI_PORT:-8181}:8181
healthcheck:
test: ["CMD", "curl", "-ILfSs", "http://localhost:8181/status"]
start_period: 90s
interval: 30s
timeout: 10s
retries: 3
deploy:
resources:
limits:
memory: 512M
restart: unless-stopped