Skip to content
Merged
Show file tree
Hide file tree
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 Dockerfile
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.6.1+dfsg-1.pgdg13+1 spatial database extension with PostgreSQL 18 trixie" \
org.opencontainers.image.description="PostGIS 3.6.2+dfsg-1.pgdg13+1 spatial database extension with PostgreSQL 18 trixie" \
org.opencontainers.image.source="https://github.com/netreconlab/hipaa-postgres/"

ENV POSTGIS_MAJOR=3
ENV POSTGIS_VERSION=3.6.1+dfsg-1.pgdg13+1
ENV POSTGIS_VERSION=3.6.2+dfsg-1.pgdg13+1
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

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

The PostGIS version should also be updated in Dockerfile.pgpool to maintain consistency across all Docker images in the repository. Currently, Dockerfile.pgpool still references version 3.6.1+dfsg-1.pgdg13+1 in both the LABEL description (line 4) and the ENV POSTGIS_VERSION (line 8).

Copilot uses AI. Check for mistakes.
ENV POSTGRES_INITDB_ARGS="--data-checksums"

RUN DEBIAN_FRONTEND=noninteractive apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.pgpool
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.6.1+dfsg-1.pgdg13+1 spatial database extension and PGPool with PostgreSQL 18 trixie" \
org.opencontainers.image.description="PostGIS 3.6.2+dfsg-1.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.1+dfsg-1.pgdg13+1
ENV POSTGIS_VERSION=3.6.2+dfsg-1.pgdg13+1
ENV POSTGRES_INITDB_ARGS="--data-checksums"

RUN DEBIAN_FRONTEND=noninteractive apt-get update \
Expand Down