From 0462bddd166be51c3b3030695094a2942d873343 Mon Sep 17 00:00:00 2001 From: msnie Date: Sat, 8 Jun 2024 23:27:36 +0200 Subject: [PATCH] sonarr --- sonarr/.env | 2 ++ sonarr/docker-compose.yml | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 sonarr/.env create mode 100644 sonarr/docker-compose.yml diff --git a/sonarr/.env b/sonarr/.env new file mode 100644 index 0000000..be9448c --- /dev/null +++ b/sonarr/.env @@ -0,0 +1,2 @@ +DOMAIN_NAME=knast.cc +DEFAULT_NETWORK=traefik diff --git a/sonarr/docker-compose.yml b/sonarr/docker-compose.yml new file mode 100644 index 0000000..f1db4e9 --- /dev/null +++ b/sonarr/docker-compose.yml @@ -0,0 +1,25 @@ +version: '3.6' +services: + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + volumes: + - /srv/sonarr:/config + - nfs_tv_data:/tv + # - /path/to/downloadclient-downloads:/downloads #optional + ports: + - 8989:8989 + restart: unless-stopped + + +volumes: + nfs_tv_data: + external: true + +networks: + traefik: + external: true \ No newline at end of file