Something went wrong. Try again.
Docker images for postgres extended with management bash scripts.
Something went wrong. Try again.
523 B · 12 lines
Dockerfile
at main
12345678910111213# parametrize docker image and tag# ------------------------------------------------------------------------------ARG POSTGIS_IMAGE=docker.io/postgis/postgisARG POSTGIS_VERSION=16-3.4FROM ${POSTGIS_IMAGE}:${POSTGIS_VERSION}-alpine
# copy maintenance scripts# ------------------------------------------------------------------------------COPY ./maintenance /usr/local/bin/maintenanceRUN chmod +x /usr/local/bin/maintenance/*RUN mv /usr/local/bin/maintenance/* /usr/local/bin \ && rmdir /usr/local/bin/maintenance