Skip to content

Seerr🔗

Seerr (previously Jellyseerr) free application for managing requests for your media library. It integrates with the media server of your choice: Jellyfin, Plex, and Emby. In addition, it integrates with your existing services, such as Sonarr, Radarr.

Setup🔗

Seerr compose
# Seerr
seerr:
  image: ghcr.io/seerr-team/seerr:latest
  init: true
  container_name: seerr
  user: "0:0"
  environment:
    - LOG_LEVEL=debug
    - TZ=Europe/Tallinn
    - PORT=5055 #optional
  ports:
    - 5055:5055
  volumes:
    - ./seerr/config:/app/config
  healthcheck:
    test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
    start_period: 20s
    timeout: 3s
    interval: 15s
    retries: 3
  restart: unless-stopped

Doc unfinished