Skip to content

sonarr

TV show collection manager for Usenet and BitTorrent users.

Port 8989
Registry ghcr.io/daemonless/sonarr
Tags :latest, :pkg, :pkg-latest
Source github.com/daemonless/sonarr

Requires patched ocijail

This application requires the allow.mlock annotation. See ocijail patch.

Quick Start

podman run -d --name sonarr \
  -p 8989:8989 \
  --annotation 'org.freebsd.jail.allow.mlock=true' \
  -e PUID=1000 -e PGID=1000 \
  -v /path/to/config:/config \
  -v /path/to/tv:/tv \
  -v /path/to/downloads:/downloads \
  ghcr.io/daemonless/sonarr:latest

Access at: http://localhost:8989

podman-compose

services:
  sonarr:
    image: ghcr.io/daemonless/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/New_York
    volumes:
      - /data/config/sonarr:/config
      - /data/media/tv:/tv
      - /data/downloads:/downloads
    ports:
      - 8989:8989
    annotations:
      org.freebsd.jail.allow.mlock: "true"
    restart: unless-stopped

Environment Variables

Variable Default Description
PUID 1000 User ID for app
PGID 1000 Group ID for app
TZ UTC Timezone

Volumes

Path Description
/config Configuration directory
/tv TV show library
/downloads Download directory

Logging

This image uses s6-log for internal log rotation. - System Logs: Captured from console and stored at /config/logs/daemonless/sonarr/. - Application Logs: Managed by the app and typically found in /config/logs/. - Podman Logs: Output is mirrored to the console, so podman logs still works.