`docker-entrypoint.sh` sets up `host all all all scram-sha-256` into `pg_hba.conf` file. https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bookworm/docker-entrypoint.sh#L252 For my database located in trusted network I wan to configure trusted authentication, but can not, because first list matched first: ``` ... host all all all scram-sha-256 host db user 172.16.0.0/12 trust ``` My `/docker-entrypoint-initdb.d/000-trust.sh` script is: ``` echo "host db user 172.16.0.0/12 trust" >> "${PGDATA}/pg_hba.conf" ``` It would be nice if this catch-all rule you will add later after processing init files https://github.com/docker-library/postgres/blob/8a631b939a0b4197cb6bef49b50b6c40c80ddf5b/15/bookworm/docker-entrypoint.sh#L331