initial commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
# Radarr
|
||||
|
||||
## Description
|
||||
|
||||
Radarr is an open-source application designed to manage and automate the downloading of movies. It allows users to monitor upcoming releases, search for movies, and automatically download them through Usenet or torrent services. With features like quality management and customizable filters, Radarr ensures your movie library stays organized and up-to-date.
|
||||
@@ -0,0 +1,17 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
radarr:
|
||||
image: lscr.io/linuxserver/radarr:latest
|
||||
container_name: radarr
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=America/Chicago
|
||||
volumes:
|
||||
- /home/mattspeer/docker/radarr:/config
|
||||
- /library/movies:/movies #location of movie library
|
||||
- /downloads/complete/movies:/downloads/movies #location of sabnzb output
|
||||
ports:
|
||||
- 7878:7878
|
||||
restart: always
|
||||
Reference in New Issue
Block a user