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.