Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/common/db/.pgpool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

services:
pg-0:
image: docker.io/bitnami/postgresql-repmgr:15
image: docker.io/soldevelo/postgresql-repmgr:15
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image tag :15 likely doesn't exist on soldevelo repository

High Severity

The soldevelo/postgresql-repmgr Docker Hub repository appears to only publish tags for PostgreSQL versions 16, 17, and 18 — there is no :15 tag available. The original bitnami/postgresql-repmgr image had a :15 tag, but soldevelo does not. This will cause Docker to fail when pulling the image, preventing both pg-0 and pg-1 services from starting. The tag likely needs to be updated to a version that exists in the soldevelo repository (e.g., :16).

Additional Locations (1)
Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bugbot Autofix determined this is a false positive.

Verified via Docker Hub API that soldevelo/postgresql-repmgr currently publishes a :15 tag, so the referenced image pull should not fail for that reason.

This Bugbot Autofix run was free. To enable autofix for future PRs, go to the Cursor dashboard.

ports:
- 5432
environment:
Expand All @@ -20,7 +20,7 @@ services:
- REPMGR_PASSWORD=repmgrpassword

pg-1:
image: docker.io/bitnami/postgresql-repmgr:15
image: docker.io/soldevelo/postgresql-repmgr:15
ports:
- 5432
environment:
Expand Down
Loading