commit 4fa9fe46257e08aabe8f9338edf6ffed69d149bf Author: Matt Speer Date: Mon May 26 20:13:48 2025 -0500 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..b255059 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# SabNZBd + +## Description + +SABnzbd is an open-source binary newsreader that simplifies downloading from Usenet by automating the process. It supports NZB files, integrates with various apps, and offers a web-based interface for easy management. Users can customize settings for optimized performance and automation. \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..98e777b --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +--- +version: "2.1" +services: + sabnzbd: + image: lscr.io/linuxserver/sabnzbd:latest + container_name: sabnzbd + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + volumes: + - /home/mattspeer/docker/sabnzb:/config + - /downloads/complete:/complete #completed downloads + - /downloads/incomplete:/incomplete-downloads #incomplete downloads + ports: + - 8080:8080 + restart: always \ No newline at end of file