Tautulli is a great tool for monitoring the media being served on your Plex server.
You may have noticed a message on your Tautulli server to update to version 2.9.4:
TLDR
Run these commands:
sudo docker pull ghcr.io/tautulli/tautulli
cd into the directory where you have your docker-compose.yml then run this command:
docker-compose up -d --no-deps --build tautulli
Resources
Here’s where I found the command for pulling a docker image:
https://smarthomepursuits.com/how-to-update-docker-container-to-latest-version/
Here’s where I found the command to run the build, kill, and up commands for docker-compose with a one-liner:
https://staxmanade.com/2016/09/how-to-update-a-single-running-docker-compose-container/
Here’s what my docker-compose.yml looks like:
version: '3'
services:
tautulli:
image: ghcr.io/tautulli/tautulli
container_name: tautulli
restart: unless-stopped
volumes:
- /home/moviegravy/tautulli-docker-setup/tautulli/config:/config
- /var/lib/plexmediaserver/Library/Application\ Support/Plex\ Media\ Server/Logs/:/plexlogs
environment:
- PUID=1001
- PGID=100
- TZ=America/New_York
ports:
- 8182:8181