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