commit 328c1d74b451798552b52e450a707eadfc87a17d Author: Matt Speer Date: Mon May 26 20:14:12 2025 -0500 initial commit 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