commit 6ece89ebcd6998a1aa74f58bbf4bfde1bd9a624f Author: Matt Speer Date: Mon May 26 20:13:18 2025 -0500 initial commit 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