Title logo
linuxserver/requestrr.

1,191,938 21 arm64 amd64 arm

Build Information

General build information for this image

Docker Hub linuxserver/requestrr
Build Time 12 Jul 2022 08:56:59
Base Image lsiobase/ubuntu:focal
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
latest 2.1.2 12 Jul 2022 at 08:56:59

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  requestrr:
    image: linuxserver/requestrr:2.1.2
    container_name: requestrr
    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:
      - 4545:4545/tcp # Web UI

CLI

docker create \
  --name=requestrr \
  -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 4545:4545/tcp `# Web UI` \
  --restart unless-stopped \
  linuxserver/requestrr:2.1.2