mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-03 23:37:32 +00:00 
			
		
		
		
	
		
			
				
	
	
	
		
			1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
Tautulli
Monitor for Plex Media Server.
docker-compose.yml
---
version: '3'
services:
  tautuli:
    image: tautulli/tautulli
    container_name: tautuli
    restart: unless-stopped
    environment:
      - TZ=Europe/Dublin
    ports:
      - "8181:8181"
    volumes:
      - ./config:/config/
      - /mnt/plex:/plex_logs:ro
Tips & Tricks
Mount external server with Plex (e.g. synology NAS)
- Edit 
fstabfile:sudo nano /etc/fstab - Add line
 
<SERVER IP>:/volume1/Plex/Library/Application\040Support/Plex\040Media\040Server/Logs /mnt/plex nfs ro,hard,intr,nolock 0 0
Troubleshooting
libcgroup1
This lib may need to be installed:
apt-get install libcgroup1
Mountpoint for devices not found
- Edit grub
sudo nano /etc/default/grub - Change 
GRUB_CMDLINE_LINUXvalue to the below:GRUB_CMDLINE_LINUX="systemd.unified_cgroup_hierarchy=0" - Then run:
grub2-mkconfig sudo reboot