From 735ba3f26ef59e6fa213ac1dd4a7d4c451570c04 Mon Sep 17 00:00:00 2001 From: Quildra Date: Sun, 11 May 2025 14:38:26 +0100 Subject: [PATCH] - Add a new Sonarr for "normal" shows --- sonarr-standard-docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sonarr-standard-docker-compose.yml diff --git a/sonarr-standard-docker-compose.yml b/sonarr-standard-docker-compose.yml new file mode 100644 index 0000000..88c51da --- /dev/null +++ b/sonarr-standard-docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' +services: + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr_standard + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + volumes: + - /usr/docker_binds/Sonarr_Standard/config:/config + - /mnt/pokecenter/Media:/tv #optional + - /mnt/pokecenter/Media/Downloads/SABNzbd/downloads:/downloads #optional + ports: + - 8990:8989 + restart: unless-stopped \ No newline at end of file