Version 18.0 of postgres image in dockerhub - container crashes when starting up - Mailing list pgsql-bugs

From Yuval Roth
Subject Version 18.0 of postgres image in dockerhub - container crashes when starting up
Date
Msg-id CAJ=gJTEm161cfAbKP+2=9d_4Miyud4MH5oW=0dhewNZ5nTo6Vw@mail.gmail.com
Whole thread Raw
Responses Re: Version 18.0 of postgres image in dockerhub - container crashes when starting up
List pgsql-bugs
Hello, my docker compose file pulled from "latest" tag and after refreshing the image, the container failed to start with an error. After downgrading to version 17.6 it started working again

The docker file config is:

```

ims-db:
    image: postgres:latest
    container_name: ims-db
    environment:
      POSTGRES_DB: ims-db
    ports:
      - "5432:5432"
    networks:
      - ims-network
    volumes:
      - ./database/init.sql:/docker-entrypoint-initdb.d/init.sql
      - ./database/data:/var/lib/postgresql/data
    env_file: db_credentials.env

```


The error is

```

Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/run/desktop/mnt/host/c/Users/Yuval/git/ims_project/database/data" to rootfs at "/var/lib/postgresql/data": change mount propagation through procfd: open o_path procfd: open /var/lib/docker/rootfs/overlayfs/b8270e0667c6ebbba5dcd89130fedd34dd01317b7cf14125cc943b475ee6d167/var/lib/postgresql/data: no such file or directory: unknown

```

pgsql-bugs by date:

Previous
From: David Rowley
Date:
Subject: Re: Segfault in RI UPDATE CASCADE on partitioned tables with LIKE+ATTACH child (attnum drift)
Next
From: Daniel Gustafsson
Date:
Subject: Re: BUG #19092: scram_free() will free on address which was not malloc()-ed in pg_scram_mech