diff --git a/docker-compose.yaml b/docker-compose.yaml index 2193906..8111661 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -39,6 +39,14 @@ x-volume-configs: create_host_path: true - <<: *shared_data_volume + bazarr: &bazarr_volumes + - type: bind + source: /mnt/omnissiah-vault/configs/bazarr + target: /config + bind: + create_host_path: true + - <<: *shared_data_volume + services: jellyseerr: image: fallenbagel/jellyseerr:latest @@ -128,6 +136,31 @@ services: - 1.1.1.1 - 8.8.8.8 + bazarr: + image: lscr.io/linuxserver/bazarr:latest + container_name: bazarr + ports: ["6767:6767"] + volumes: *bazarr_volumes + environment: + - PUID=${PUID} + - PGID=${PGID} + - TZ=${TZ} + networks: + - media-net + depends_on: + - sonarr + - radarr + extra_hosts: + - "host.docker.internal:host-gateway" + healthcheck: + test: [ "CMD", "curl", "-f", "http://localhost:6767" ] + interval: 1m + retries: 3 + restart: unless-stopped + dns: + - 1.1.1.1 + - 8.8.8.8 + ombi: image: lscr.io/linuxserver/ombi:latest container_name: ombi @@ -156,4 +189,4 @@ networks: driver: bridge labels: - "com.media-stack.network=main" - - "com.media-stack.description=Primary network for *arr stack communication with IPv6" \ No newline at end of file + - "com.media-stack.description=Primary network for *arr stack communication with IPv6"