From 9800b6dec40d48c42ed116c292590e634d840895 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 28 Apr 2025 15:29:00 +0100 Subject: [PATCH 1/4] fix(stremio-catalog-providers): correct postgres user in healthcheck command --- apps/stremio-catalog-providers/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/stremio-catalog-providers/compose.yaml b/apps/stremio-catalog-providers/compose.yaml index af9be99..f668623 100644 --- a/apps/stremio-catalog-providers/compose.yaml +++ b/apps/stremio-catalog-providers/compose.yaml @@ -56,7 +56,7 @@ services: ports: - "5432:5432" healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres_user -d stremio_catalog_db"] + test: ["CMD-SHELL", "pg_isready -U postgres -d stremio_catalog_db"] interval: 30s timeout: 10s retries: 5 From b6dbf600c02f12a91c164d64c6c22db216641bbd Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 28 Apr 2025 15:29:10 +0100 Subject: [PATCH 2/4] fix(stremio-trakt-addon): correct postgres user in healthcheck command --- apps/stremio-trakt-addon/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/stremio-trakt-addon/compose.yaml b/apps/stremio-trakt-addon/compose.yaml index b76d347..fb1c5be 100644 --- a/apps/stremio-trakt-addon/compose.yaml +++ b/apps/stremio-trakt-addon/compose.yaml @@ -60,7 +60,7 @@ services: expose: - 5432 healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres_user -d stremio_trakt_db"] + test: ["CMD-SHELL", "pg_isready -U postgres -d stremio_trakt_db"] interval: 30s timeout: 10s retries: 5 From 1954682b879f95854f8506ca859195ffb86353bd Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 28 Apr 2025 15:30:21 +0100 Subject: [PATCH 3/4] fix(stremio-catalog-providers): replace ports with expose for postgres service --- apps/stremio-catalog-providers/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/stremio-catalog-providers/compose.yaml b/apps/stremio-catalog-providers/compose.yaml index f668623..57ce6fe 100644 --- a/apps/stremio-catalog-providers/compose.yaml +++ b/apps/stremio-catalog-providers/compose.yaml @@ -53,8 +53,8 @@ services: POSTGRES_PASSWORD: postgres volumes: - ${DOCKER_DATA_DIR}/stremio-catalog-providers/db:/var/lib/postgresql/data - ports: - - "5432:5432" + expose: + - 5432 healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres -d stremio_catalog_db"] interval: 30s From 57a09d503e7feb2f2b75e86e54c47e9983161b08 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 28 Apr 2025 15:32:52 +0100 Subject: [PATCH 4/4] feat(prowlarr)!: mount prowlarr config directly to prowlarr folder instead of prowlarr/config --- apps/prowlarr/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/prowlarr/compose.yaml b/apps/prowlarr/compose.yaml index 7017485..fd32667 100644 --- a/apps/prowlarr/compose.yaml +++ b/apps/prowlarr/compose.yaml @@ -10,7 +10,7 @@ services: expose: - 9696 volumes: - - ${DOCKER_DATA_DIR}/prowlarr/config:/config + - ${DOCKER_DATA_DIR}/prowlarr:/config restart: unless-stopped labels: - "traefik.enable=true"