From 6ece89ebcd6998a1aa74f58bbf4bfde1bd9a624f Mon Sep 17 00:00:00 2001 From: Matt Speer Date: Mon, 26 May 2025 20:13:18 -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..2170535 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Sonarr + +## Description + +Sonarr is a powerful PVR (Personal Video Recorder) application designed to help users manage and automate the downloading, sorting, and organization of TV series. It monitors RSS feeds for new episodes, automatically downloads them from supported torrent or Usenet sites, and neatly organizes them in your media library. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..7d3a75b --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +--- +version: "2.1" +services: + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + volumes: + - /home/mattspeer/docker/sonarr:/config + - /library/tv:/tv #path to tvseries + - /downloads/complete/tv:/downloads/tv #optional + ports: + - 8989:8989 + restart: always \ No newline at end of file