Title logo
linuxserver/sonarr.

A Sonarr container, brought to you by LinuxServer.io.

2,286,899,564 1,975 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/sonarr
Build Time 19 Apr 2024 23:43:24
Base Image lsiobase/mono:lts
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 4.0.4 19 Apr 2024 at 23:41:46
develop 4.0.4-develop 19 Apr 2024 at 23:43:23

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  sonarr:
    image: linuxserver/sonarr:4.0.4
    container_name: sonarr
    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/data:/data # Location of all your media
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 8989:8989/tcp # Web UI

CLI

docker create \
  --name=sonarr \
  -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/data:/data `# Location of all your media` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 8989:8989/tcp `# Web UI` \
  --restart unless-stopped \
  linuxserver/sonarr:4.0.4