From 328c1d74b451798552b52e450a707eadfc87a17d Mon Sep 17 00:00:00 2001 From: Matt Speer Date: Mon, 26 May 2025 20:14:12 -0500 Subject: [PATCH] initial commit --- README.md | 5 +++++ docker-compose.yaml | 17 +++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 README.md create mode 100644 docker-compose.yaml diff --git a/README.md b/README.md new file mode 100644 index 0000000..cc01b23 --- /dev/null +++ b/README.md @@ -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. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..a64a884 --- /dev/null +++ b/docker-compose.yaml @@ -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 \ No newline at end of file