Plex/Jellyfin watch-statistics compose example.
Educational example only. Review every volume path, port, and credential before you run this. Do not copy production secrets into your wiki or git repo.
_shared/.env for non-secrets, _shared/.secret for credentialsmkdir -p /path/to/docker/stacks/tautulli
cd /path/to/docker/stacks/tautulli
# paste compose.yaml below, then:
docker compose pull
docker compose up -d
---
services:
###########################################################################
## Docker Compose File: tautulli (fallenbagel)
## Function: Media Request Manager
## Documentation: https://hub.docker.com/r/fallenbagel/jellyseerr
###########################################################################
tautulli:
image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli
hostname: tautulli
env_file:
- /path/to/docker/stacks/_shared/.env
- /path/to/docker/stacks/_shared/.secret
logging:
driver: json-file
options:
max-file: ${DOCKERLOGGING_MAXFILE:-10} # Max number of log files
max-size: ${DOCKERLOGGING_MAXSIZE:-200k} # Max file size
volumes:
- /path/to/docker/data/tautulli/config:/config # Replace with your desired config path
- /path/to/docker/data/tautulli/plex/logs:/plex_logs:ro # Optional: for Plex Log Viewer
ports:
- 8182:8181
restart: unless-stopped
_shared/.secret.