Skip to content
This repository has been archived by the owner on Jun 5, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
25 lines (13 loc) · 809 Bytes

README.md

File metadata and controls

executable file
·
25 lines (13 loc) · 809 Bytes

sonarr-pipeline

Sonarr

A docker container for Sonarr

Usage

Commands to build & deploy Sonarr container using Docker.

Build locally;

Clone repository and run the following commands;

$ sudo docker build -t sonarr .

Run container;

*Following command sets max memory and links to an existing SABnzbd instance.

$ sudo docker run -tid -m 256m --name sonarr --link sabnzbd:sabnzbd -p 8989:8989 -v /path/on/host/config:/config -v /path/on/host/download:/download -e UID=1030 -e GID=100 sonarr

Attach to container;

$ sudo docker exec -it sonarr /bin/sh