From 2839374d2493ba3749963c406bc6699f367f862f Mon Sep 17 00:00:00 2001 From: sujiba Date: Thu, 22 Feb 2024 21:56:21 +0000 Subject: [PATCH] =?UTF-8?q?arr/docker-compose.yml=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arr/docker-compose.yml | 94 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 arr/docker-compose.yml diff --git a/arr/docker-compose.yml b/arr/docker-compose.yml new file mode 100644 index 0000000..4f1b1c7 --- /dev/null +++ b/arr/docker-compose.yml @@ -0,0 +1,94 @@ +version: "3" +services: + ### Downloader - Usenet + sabnzbd: + image: lscr.io/linuxserver/sabnzbd:latest + container_name: sabnzbd + environment: + - PUID=123 + - PGID=123 + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/sabnzbd/config:/config + - /opt/nvme/arr/usenet:/data/usenet + ports: + - 28080:8080 + restart: unless-stopped + + ### Library Manager - Music + lidarr: + image: lscr.io/linuxserver/lidarr:latest + container_name: lidarr + environment: + - PUID=123 + - PGID=123 + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/lidarr/config:/config + - /opt/nvme/arr:/data + ports: + - 28686:8686 + restart: unless-stopped + + ### Library Manager - Movies + radarr: + image: lscr.io/linuxserver/radarr:latest + container_name: radarr + environment: + - PUID=123 + - PGID=123 + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/radarr/config:/config + - /opt/nvme/arr:/data + ports: + - 27878:7878 + restart: unless-stopped + + ### Libarary Manager - TV Shows + sonarr: + image: lscr.io/linuxserver/sonarr:develop + container_name: sonarr + environment: + - PUID=123 + - PGID=123 + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/sonarr/config:/config + - /opt/nvme/arr:/data + ports: + - 28989:8989 + restart: unless-stopped + + ### Index and Search Management + prowlarr: + image: lscr.io/linuxserver/prowlarr:latest + container_name: prowlarr + environment: + - PUID=123 + - PGID=123 + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/prowlarr/config:/config + ports: + - 29696:9696 + restart: unless-stopped + + ### Content Request Management + jellyseerr: + image: fallenbagel/jellyseerr:latest + container_name: jellyseerr + environment: + - LOG_LEVEL=debug + - UMASK=022 + - TZ=Europe/Berlin + volumes: + - ./volumes/jellyseerr/config:/app/config + ports: + - 25055:5055 + restart: unless-stopped \ No newline at end of file