created bind mount compose file
This commit is contained in:
@@ -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=
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
Reference in New Issue
Block a user