Maintainerr

Link to App

Link to GitHub or Website

Automates deletion of Plex media based on filters

This app is hosted on Latte as a docker container

https://github.com/trentnbauer/agg/blob/e161ff0fac40df82f2b10aed3e2b7ff6e0d2333b/docker-compose/maintainerr.yml
version: '3'
services:
  app:
    image: ghcr.io/jorenn92/maintainerr:2.0.3
    volumes:
      #- $MEDIA:$MEDIA
      - data:/opt/data
    environment:
      - TZ=Australia/Melbourne
    ports:
      - ${PORT:-6246}:6246 
    restart: unless-stopped
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3"
    #healthcheck:
    #  test: wget --no-verbose --tries=1 --spider http://localhost:6246 || exit 1
    #  interval: 30s
    #  retries: 3
    #  start_period: 30s
    #  timeout: 20s
    #labels:
    #  - "autoheal=true"
volumes:
  data:
Port
Purpose

6246

WebUI

Host Volume
Container Volume
Purpose

/opt/data

Application Data

Integration
Purpose

Plex

Pull data from plex, eg watch history

Sonarr

Pull data from Sonarr, eg if returning season

Radarr

Pull data from Radarr, eg date requested

Overseerr

Pull data from Overseerr, eg how many times requested

Last updated

Was this helpful?