Added Bazarr

This commit is contained in:
Shaun Collins
2026-03-19 10:33:57 +00:00
committed by shaun collins
parent 2fed95bfd7
commit deefb99506
3 changed files with 54 additions and 2 deletions
+1
View File
@@ -5,3 +5,4 @@ JellySeerr/*
Prowlarr/* Prowlarr/*
Radarr/* Radarr/*
Sonarr/* Sonarr/*
Bazarr/*
+49
View File
@@ -120,6 +120,29 @@ services:
networks: networks:
- lingen - lingen
bazarr:
container_name: bazarr
image: lscr.io/linuxserver/bazarr:latest
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
volumes:
- ./Bazarr/config:/config
- ${TVSHOWS}:/data/tvshows
- ${MOVIES}:/data/movies
ports:
- "6767:6767"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6767/health"]
start_period: 30s
timeout: 5s
interval: 30s
retries: 3
restart: unless-stopped
networks:
- lingen
flaresolverr: flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr container_name: flaresolverr
@@ -222,6 +245,32 @@ services:
gluetun: gluetun:
condition: service_healthy condition: service_healthy
lidarr:
container_name: lidarr
image: ghcr.io/hotio/lidarr
ports:
- "8686:8686"
environment:
- PUID=${PUID}
- PGID=${PGID}
- UMASK=002
- TZ=${TZ}
volumes:
- ./Lidarr/config:/config
- ./Lidarr/data:/data
- ./Lidarr/downloads:/downloads
- ${MUSIC}:/data/music
- ${DOWNLOADS}:/data/downloads
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8686/ping"]
start_period: 30s
timeout: 5s
interval: 30s
retries: 3
networks:
- lingen
restart: unless-stopped
networks: networks:
lingen: lingen:
driver: bridge driver: bridge
+3 -1
View File
@@ -218,7 +218,9 @@
{ ipAddress: "192.168.40.5", port: "7676", name: "PruneMate", description: "Clean up Docker data", site: "prune", icon: "fa-solid fa-trash" }, { ipAddress: "192.168.40.5", port: "7676", name: "PruneMate", description: "Clean up Docker data", site: "prune", icon: "fa-solid fa-trash" },
{ ipAddress: "192.168.40.5", port: "60072", name: "Scanopy", description: "Scan and organize your network", site: "scan", icon: "fa-solid fa-satellite-dish" }, { ipAddress: "192.168.40.5", port: "60072", name: "Scanopy", description: "Scan and organize your network", site: "scan", icon: "fa-solid fa-satellite-dish" },
{ ipAddress: "192.168.40.5", scheme: 'https://', port: "8443", name: "Minecraft", description: "Crafty Minecraft server admin", site: "minecraft", icon: "fa-solid fa-cubes" }, { ipAddress: "192.168.40.5", scheme: 'https://', port: "8443", name: "Minecraft", description: "Crafty Minecraft server admin", site: "minecraft", icon: "fa-solid fa-cubes" },
{ ipAddress: "192.168.40.5", port: "8081", name: "IT Tools", description: "Collection of tools for IT Dev", site: "tools", icon: "fa-solid fa-tools" } { ipAddress: "192.168.40.5", port: "8081", name: "IT Tools", description: "Collection of tools for IT Dev", site: "tools", icon: "fa-solid fa-tools" },
{ ipAddress: "192.168.40.5", port: "3002", name: "Gluetun", description: "Web UI for VPN status", site: "gluetun", icon: "fa-solid fa-shield" },
{ ipAddress: "192.168.40.5", port: "6767", name: "Bazarr", description: "Subtitle provider", site: "bazarr", icon: "fa-solid fa-closed-captioning" }
]; ];
const buttonContainer = document.querySelector(".button-container"); const buttonContainer = document.querySelector(".button-container");