Skip to content

Setup Jellyseer

Overview

Jellyseerr is a free and open source fork of Overseerr for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Jellyfin!

Important Docker Files

.env file

.env
NAME=jellyseer
DOMAIN=
APPDATA=
TZ=America/New_York
PORT=5055

docker-compose.yml file

docker-compose.yml
services:
  overseerr:
    image: fallenbagel/jellyseerr
    container_name: ${NAME}
    restart: unless-stopped
    environment:
      LOG_LEVEL: debug
      TZ: ${TZ}
    volumes:
      - ${APPDATA}/${NAME}/config:/app/config
    networks:
      - main
    labels:
      swag: enable
      swag_address: ${NAME}
      swag_port: ${PORT}
      swag_proto: http
      swag_url: ${NAME}.${DOMAIN}
      com.centurylinklabs.watchtower.enable: true
networks:
  main:
    external: true

Start the Container

Start the Container
docker compose up -d

Changelog

2025-03-08

  • Updated Network to follow new schema.
  • Removed DNS from docker-compose file, as it is no longer needed.
    • Previously fixed DNS issue occuring on servers with using the flag of tailscale up --accept-dns=false to no not overwrite DNS servers on the server.