Title logo
linuxserver/overseerr.

4,998,016 99 arm amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/overseerr
Build Time 07 Mar 2023 04:26:41
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-a4d07f5afab613317d96c9c6e9b47157a5a28986 02 Mar 2023 at 14:32:35
latest 1.32.5 07 Mar 2023 at 04:26:41

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:1.32.5
    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:1.32.5