From 8d0a7ab980848b051b1c8a2341c7ae9f2405f1e8 Mon Sep 17 00:00:00 2001 From: Kevin Loo Date: Mon, 2 Dec 2024 12:32:01 -0500 Subject: [PATCH] feat: enable GTiff GDAL driver for PostGIS raster --- Dockerfile-156 | 20 ++++++++++++------- .../postgresql-platform-defaults.conf | 3 +++ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Dockerfile-156 b/Dockerfile-156 index ce83237f2..9c3335561 100644 --- a/Dockerfile-156 +++ b/Dockerfile-156 @@ -54,10 +54,10 @@ RUN apt update -y && apt install -y \ RUN adduser --system --home /var/lib/postgresql --no-create-home --shell /bin/bash --group --gecos "PostgreSQL administrator" postgres RUN adduser --system --no-create-home --shell /bin/bash --group wal-g RUN curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux \ ---init none \ ---no-confirm \ ---extra-conf "substituters = https://cache.nixos.org https://nix-postgres-artifacts.s3.amazonaws.com" \ ---extra-conf "trusted-public-keys = nix-postgres-artifacts:dGZlQOvKcNEjvT7QEAJbcV6b6uk7VF/hWMjhYleiaLI=% cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" + --init none \ + --no-confirm \ + --extra-conf "substituters = https://cache.nixos.org https://nix-postgres-artifacts.s3.amazonaws.com" \ + --extra-conf "trusted-public-keys = nix-postgres-artifacts:dGZlQOvKcNEjvT7QEAJbcV6b6uk7VF/hWMjhYleiaLI=% cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ENV PATH="${PATH}:/nix/var/nix/profiles/default/bin" @@ -136,9 +136,9 @@ FROM base as gosu ARG TARGETARCH # Install dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ - gnupg \ - ca-certificates \ - && rm -rf /var/lib/apt/lists/* + gnupg \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* # Download binary ARG GOSU_VERSION=1.16 ARG GOSU_GPG_KEY=B42F6819007F00F88E364FD4036A9C25BF357DD4 @@ -186,6 +186,12 @@ RUN sed -i \ mkdir -p /etc/postgresql-custom && \ chown postgres:postgres /etc/postgresql-custom +# Ensure postgresql-platform-defaults.conf is included +RUN echo "include = '/etc/postgresql-custom/postgresql-platform-defaults.conf'" >> /etc/postgresql/postgresql.conf && \ + touch /etc/postgresql-custom/postgresql-platform-defaults.conf && \ + chown postgres:postgres /etc/postgresql-custom/postgresql-platform-defaults.conf && \ + chmod 644 /etc/postgresql-custom/postgresql-platform-defaults.conf + # # Include schema migrations COPY migrations/db /docker-entrypoint-initdb.d/ COPY ansible/files/pgbouncer_config/pgbouncer_auth_schema.sql /docker-entrypoint-initdb.d/init-scripts/00-schema.sql diff --git a/docker/all-in-one/etc/postgresql-custom/postgresql-platform-defaults.conf b/docker/all-in-one/etc/postgresql-custom/postgresql-platform-defaults.conf index 51d34a13a..2d4080b62 100644 --- a/docker/all-in-one/etc/postgresql-custom/postgresql-platform-defaults.conf +++ b/docker/all-in-one/etc/postgresql-custom/postgresql-platform-defaults.conf @@ -5,3 +5,6 @@ log_connections = on statement_timeout = 120000 jit = off pgaudit.log = 'ddl' + +# Enable GTiff GDAL driver for PostGIS raster functionality +postgis.gdal_enabled_drivers = 'GTiff'