Self-hosted Plex movie library auditor that analyzes your collection using TMDB and highlights missing franchise movies, director gaps, and classic films.
Cineplete is a self-hosted tool that audits a Plex movie library and analyzes it against TMDB to identify gaps in your collection.
It helps answer questions like:
The tool generates a web dashboard with insights about your movie collection.
docker run -d \
-p 8787:8787 \
-v ./config:/config \
-v ./data:/data \
sdblepas/cineplete:latest
version: "3.9"
services:
cineplete:
image: sdblepas/cineplete:latest
container_name: cineplete
ports:
- "8787:8787"
volumes:
- /volume1/Docker/cineplete/config:/config
- /volume1/Docker/cineplete/data:/data
labels:
net.unraid.docker.webui: "http://[IP]:[PORT:8787]"
net.unraid.docker.icon: "https://raw.githubusercontent.com/sdblepas/CinePlete/main/assets/icon.png"
healthcheck:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8787')"]
interval: 30s
timeout: 10s
retries: 5
start_period: 20s
restart: unless-stopped
Content type
Image
Digest
sha256:5cc664c41…
Size
58.6 MB
Last updated
30 days ago
docker pull sdblepas/cineplete