From dad3db2ecbe29d0a48e644fb6d3e31466d1d824a Mon Sep 17 00:00:00 2001 From: moshferatu Date: Sun, 19 Nov 2023 06:12:29 -0800 Subject: [PATCH] Add Sonarr Docker compose file --- sonarr.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sonarr.yaml diff --git a/sonarr.yaml b/sonarr.yaml new file mode 100644 index 0000000..ec61f7b --- /dev/null +++ b/sonarr.yaml @@ -0,0 +1,11 @@ +version: "3" +services: + sonarr: + image: lscr.io/linuxserver/sonarr:develop + container_name: sonarr + volumes: + - /sonarr/config:/config + - :/data + ports: + - 8989:8989 + restart: unless-stopped \ No newline at end of file