Title logo
linuxserver/overseerr.

6,427,888 146 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/overseerr
Build Time 17 Apr 2024 19:00:26
Base Image lsiobase/alpine:3.13
Category Media
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
develop develop-version-36283f214a68192a8d32f25e4148beac04ddda14 17 Apr 2024 at 19:00:25
latest v1.33.2-ls102 17 Apr 2024 at 18:57:22

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  overseerr:
    image: linuxserver/overseerr:v1.33.2-ls102
    container_name: overseerr
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # User ID to run as
      - PGID=1000 # Group ID to run as
    volumes:
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 5055:5055/tcp # Web UI

CLI

docker create \
  --name=overseerr \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# User ID to run as` \
  -e PGID=1000 `# Group ID to run as` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 5055:5055/tcp `# Web UI` \
  --restart unless-stopped \
  linuxserver/overseerr:v1.33.2-ls102