pmm-admin config: Detected address '172.19.0.4' is not locally bound, then HTTP 400

Hi djvdorp ,

That IP address of 172.19 looks very much the Docker internal subnet. From the host, if you run ip addr you should see a docker0 interface.

One way to avoid the Docker network is to launch your container using

docker run --net=host ...
  • this way PMM Server will be directly attached to the host’s public IP address.