Skip to content

Overseerr

Docker Pulls GitHub Stars

Description

Overseerr is a application for managing requests for your media library. It integrates with your existing services such as Sonarr, Radarr and Plex! (Like Ombi)

Install/Setup

Example Docker Compose Override

services:
  overseerr:
    container_name: overseerr
    environment:
      - PGID=${PGID}
      - PUID=${PUID}
      - TZ=${TZ}
    hostname: ${DOCKERHOSTNAME}
    image: ghcr.io/hotio/overseerr:latest
    logging:
      driver: json-file
      options:
        max-file: ${DOCKERLOGGING_MAXFILE}
        max-size: ${DOCKERLOGGING_MAXSIZE}
    ports:
      - 5055:5055
    restart: unless-stopped
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ${DOCKERCONFDIR}/overseerr:/config
      - ${DOCKERSTORAGEDIR}:/storage