Sign inSign up

culater/sonarr

By culater

Updated 1 day ago

The Sonarr App in a Docker Container

Image
0

6.0K

culater/sonarr repository overview

docker-sonarr

pipeline status Based on sonarr release Docker image

The Sonarr PVR , dockerized.

This is part of a collection of docker images, designed to run on my low-end x86 based QNAP NAS server. My aim is to keep this a lightweight image.

Example usage

docker run example

/config stores the Sonarr config, /tv is your tv series library, /downloads is where new downloads arrive.

docker run -d \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Europe/Berlin \
  -v /path/to/config:/config \
  -v /path/to/tv:/tv \
  -v /path/to/downloads:/downloads \
  -p 8989:8989 \
  --restart=unless-stopped culater/sonarr

docker-compose example:

---
version: "3"
services:
  sonarr:
    image: culater/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - /path/to/config:/config
      - /path/to/tv:/tv
      - /path/to/downloads:/downloads
    ports:
      - 8989:8989
    restart: unless-stopped

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about sonarr can be found here: Sonarr

Project status

This image is being updated on a weekly schedule and should catch up with new releases of sonarr within a few days.

Tag summary

Content type

Image

Digest

sha256:a5a7ddd82

Size

81.5 MB

Last updated

1 day ago

docker pull culater/sonarr