initial commit
This commit is contained in:
5
README.md
Normal file
5
README.md
Normal file
@@ -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.
|
||||||
17
docker-compose.yaml
Normal file
17
docker-compose.yaml
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user