initial commit

This commit is contained in:
2025-05-26 20:13:18 -05:00
commit 6ece89ebcd
2 changed files with 22 additions and 0 deletions
+5
View File
@@ -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.
+17
View File
@@ -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