DEPRECATED: Docker image for Sonarr
100K+
DEPRECATED: This docker image is not maintained any more and will not retrieve anu updates. For a similar docker image I suggest to use images from linuxserver.io
See the source for this image at <a href=https://github.com/orbnedron/sonarr-docker>https://github.com/orbnedron/sonarr-docker
Versions of this docker image published after 2020-06-15 does not run Sonarr as root anymore, this might cause permission errors.
This is a Docker image for Sonarr - the awesome tv series PVR for usenet and torrents.
To build Sonarr container you can execute:
docker build --build-arg SONARR_VERSION=$SONARR_VERSION -t sonarr .
$SONARR_VERSION is version of Sonarr you want to install.
To run it (with image on docker hub) :
docker run -d -p 8989:8989 \
-v <download path>:/media/downloads \
-v <media path>:/media/series \
-v <config path>:/config \
-v /etc/localtime:/etc/localtime:ro \
-e SONARR_USER_ID=`id -u $USER` -e SONARR_GROUP_ID=`id -g $USER`
--restart unless-stopped \
--name sonarr \
orbnedron/sonarr
Open a browser and point it to http://my-docker-host:8989
You can also run the Sonarr container by using Docker Compose.
If you've cloned the git repository you can build and run the Docker container locally (without the Docker Hub):
docker-compose up -d
If you want to use the Docker Hub image within your existing Docker Compose file you can use the following YAML snippet:
sonarr:
image: "orbnedron/sonarr"
container_name: "sonarr"
volumes:
- "<download path>:/media/downloads"
- "<media path 1>:/media/series"
- "<media path 2>:/media/series2"
- "<media path 3>:/media/series3"
- "<config path>:/config"
ports:
- "8989:8989"
restart: unless-stopped
# environment:
# - SONARR_USER_ID=1000
# - SONARR_GROUP_ID=1000
Please mount the following volumes inside your Sonarr container:
/media/downloads: Holds all the downloaded data (e.g. dropbox folders)/media/series: Directory for media files (e.g. tv series), up to 3 folders/config: Directory for configuration filesBy default the Sonarr configuration is located on /config.
Content type
Image
Digest
sha256:a7b7af24a…
Size
121.4 MB
Last updated
about 4 years ago
docker pull orbnedron/sonarr