postgres icon indicating copy to clipboard operation
postgres copied to clipboard

Docker Official Image packaging for Postgres

Results 57 postgres issues
Sort by recently updated
recently updated
newest added

Hi, I find it harder than it should be to customize postgresql.conf: * usually PGDATA is bind mounted so it’s not always easy to add a file in there at...

Request

This patch allows us to build a PostgreSQL Windows container that matches the functionality of the Linux container image. The `Dockerfile` uses the BigSQL distribution of PostgeSQL. I saw previous...

When I running: on amd64, arm64, ppc64le ``` docker run --platform=linux/amd64 -ti --rm postgres:13-bullseye bash -c "dpkg -l | grep -i postgresql" Status: Downloaded newer image for postgres:13-bullseye ii libpq5:amd64...

question

postgres 14 deployed in kubernetes with 64Gi huge page on running TPC-C benchmarking with 800 warehouses(~80GB data size) ```console $ free -g total used free shared buff/cache available Mem: 503...

question

Base images should avoid setting VOLUME since it is currently impossible to unset in child images: https://github.com/moby/moby/issues/3465

Request

Issue: Make it easy to test load all files from `docker-entrypoint-initdb.d` and verify they work, during a `docker build`, without fully starting the final db instance. I have a `Dockerfile`...

Request

This seems important after a recent breaking change (https://github.com/docker-library/postgres/pull/658), resulted in many confused and frustrated developers (https://github.com/docker-library/postgres/issues/681, https://github.com/docker-library/official-images/pull/7474#commitcomment-37304519)

# Problem The postgres binaries shipped with the docker images in this repo seem to be [stripped](https://unix.stackexchange.com/a/2972): ``` root@0d42c3d8cd06:/# postgres --version postgres (PostgreSQL) 12.1 (Debian 12.1-1.pgdg100+1) root@0d42c3d8cd06:/# file $(which postgres)...

question

I know that when the PGData directory is not empty the container skips the initialization and therefore won't run the initialization script in `/docker-entrypoint-initdb.d ` I would like to use...