-
-
Notifications
You must be signed in to change notification settings - Fork 2
refactor: Update to latest postgis #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| FROM postgres:18-trixie | ||
|
|
||
| LABEL maintainer="HIPAA Postgres w/ PostGIS Project" \ | ||
| org.opencontainers.image.description="PostGIS 3.5.2+dfsg-1.pgdg110+1 spatial database extension and PGPool with PostgreSQL 18 trixie" \ | ||
| org.opencontainers.image.description="PostGIS 3.5.2+dfsg-2.pgdg13+1 spatial database extension and PGPool with PostgreSQL 18 trixie" \ | ||
| org.opencontainers.image.source="https://github.com/netreconlab/hipaa-postgres/" | ||
|
|
||
| ENV POSTGIS_MAJOR=3 | ||
| ENV POSTGIS_VERSION=3.6.0+dfsg-1.pgdg13+1 | ||
| ENV POSTGIS_VERSION=3.6.0+dfsg-2.pgdg13+1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainPOSTGIS_VERSION bump looks solid—let’s verify the package exists. Confirm the package/version is published for trixie to ensure reproducible builds. 🌐 Web query: 💡 Result: I could not find evidence that the exact package version "3.6.0+dfsg-2.pgdg13+1" exists in the PGDG trixie repository. PGDG/apt listings show trixie packages with version "3.6.0+dfsg-1.pgdg13+1" for postgresql-18-postgis-3. [1] The Debian tracker shows postgis 3.6.0+dfsg-2 was accepted into Debian unstable (source) but without the "pgdg13+1" PGDG build suffix. [2] Sources:
Update Dockerfile.pgpool ENV POSTGIS_VERSION to 3.6.0+dfsg-1.pgdg13+1 🤖 Prompt for AI Agents |
||
| ENV POSTGRES_INITDB_ARGS="--data-checksums" | ||
|
|
||
| RUN apt-get update \ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Version bump looks right—confirm availability.
Ensure apt.postgresql.org for trixie has postgresql-18-postgis-3 at 3.6.0+dfsg-2.pgdg13+1 to keep builds green.
🌐 Web query:
💡 Result:
No. apt.postgresql.org (the PGDG pool) provides postgresql-18-postgis-3 for trixie as 3.6.0+dfsg-1.pgdg13+1 (see the PGDG pool listing). The 3.6.0+dfsg-2 build appears in Debian/unpacked suites (sid/forky) per packages.debian.org, not as 3.6.0+dfsg-2.pgdg13+1 on apt.postgresql.org for trixie. [1][2]
Sources:
Specify available PostGIS version for Debian trixie
apt.postgresql.org pool for trixie only provides postgresql-18-postgis-3 at 3.6.0+dfsg-1.pgdg13+1, not 3.6.0+dfsg-2.pgdg13+1—adjust ENV POSTGIS_VERSION to 3.6.0+dfsg-1.pgdg13+1 to keep builds green! Plus Ultra!
🤖 Prompt for AI Agents