created tautulli
This commit is contained in:
@@ -0,0 +1,20 @@
|
|||||||
|
# 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
|
||||||
|
|
||||||
|
# NFS server hostname or IP address
|
||||||
|
TAUTULLI_NFS_SERVER=
|
||||||
|
|
||||||
|
# NFS export path on the server (e.g. :/mnt/pool/tautulli/config)
|
||||||
|
TAUTULLI_NFS_DEVICE=
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
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:/config
|
||||||
|
ports:
|
||||||
|
- ${TAUTULLI_PORT:-8181}:8181
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 512M
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-ILfSs", "http://localhost:8181/status"]
|
||||||
|
start_period: 90s
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
tautulli-config:
|
||||||
|
name: tautulli-config
|
||||||
|
driver: local
|
||||||
|
driver_opts:
|
||||||
|
type: nfs
|
||||||
|
o: "addr=${TAUTULLI_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
|
||||||
|
device: "${TAUTULLI_NFS_DEVICE}"
|
||||||
Reference in New Issue
Block a user