Hello, I installed PostgreSQL 11 in a docker container and pgadmin4 in another one.
See https://sqldesign.blog/2018/12/24/how-to-install-pgadmin4-with-docker/ It works fine. I installed PostgreSQL 11 in local. But I cannot access local pg cluster from pgadmin4 in my container. IP address of local (given by google) : 217.39.18.97 IP address of pgadmin4 container (given by docker inspect) : 172.17.0.3 Port of local pg cluster (given by \conninfo) : 5433 in pg_hba : host all all 0.0.0.0/0 md5 What can I do ? Thank you