Skip to content
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

feat: enable GTiff GDAL driver for PostGIS raster #1351

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
20 changes: 13 additions & 7 deletions Dockerfile-156
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'