项目作者: csmith

项目描述 :
Dockerised version of Sonarr (née NzbDrone)
高级语言:
项目地址: git://github.com/csmith/docker-sonarr.git
创建时间: 2016-05-13T18:07:44Z
项目社区:https://github.com/csmith/docker-sonarr

开源协议:

下载


Nzbget Dockerfile

This is a dockerised version of Sonarr.

Usage

The container has three volumes, one for configuration,
one for incoming (downloaded) files, and one for output.

Create named volumes for the config:

  1. docker volume create --name sonarr-config

Start a container, exposing the UI port, and binding all the
volumes:

  1. docker run -d --name sonarr \
  2. --restart always \
  3. -v sonarr-config:/config \
  4. -v /mnt/external/downloads:/downloads \
  5. -v /mnt/external/tv:/destination \
  6. -p 8989:8989 \
  7. csmith/sonarr:2.0.0.4146