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.
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
Please report any issues to the Gitlab issue tracker
More information about sonarr can be found here: Sonarr
This image is being updated on a weekly schedule and should catch up with new releases of sonarr within a few days.
Content type
Image
Digest
sha256:a5a7ddd82…
Size
81.5 MB
Last updated
1 day ago
docker pull culater/sonarr