We are facing a similar problem using a docker from https://hub.docker.com/_/postgres on AWS EC2 machine. The version we are using is 17 (docker image "postgres:17")
The issue happens on our CI server, and it happens consistently.
On Thu, Dec 26, 2024 at 1:43 PM Torsten Krah <krah.tm@gmail.com> wrote:
Am Mittwoch, dem 20.09.2023 um 13:11 +0200 schrieb Laurenz Albe: > Is that an NFS mount? What are the mount options? > > Yours, > Laurenz Albe
No mount at all.
Just the docker container filesystem using the overlay2 storage driver, there is nothing externally mounted in that container, the data is already in the image (via docker COPY) from which the container gets created (and that data directory was created in the image build process via pg_restore from the dump file).
The whole container / image just involves overlay2 fs which itself is sitting on ext4.