From b78631413b75c692e75b784ab4e0d64372b8e937 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Thu, 16 Nov 2023 04:41:30 -0800 Subject: [PATCH] Add SABnzbd Docker compose file --- sabnzbd.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sabnzbd.yaml diff --git a/sabnzbd.yaml b/sabnzbd.yaml new file mode 100644 index 0000000..102090d --- /dev/null +++ b/sabnzbd.yaml @@ -0,0 +1,11 @@ +version: "3" +services: + sabnzbd: + image: lscr.io/linuxserver/sabnzbd:latest + container_name: sabnzbd + volumes: + - /sabnzbd/config:/config + - /Usenet:/downloads + ports: + - 8082:8080 + restart: unless-stopped \ No newline at end of file