I was provided with a Docker community solution
The OpenStack network seems to use lower MTU values, and Docker does not output MTU parameters from the network interface card from 1.10 .
To run the docker daemon with custom MTU settings, you can follow this blog post that says:
$ cp /lib/systemd/system/docker.service /etc/systemd/system/docker.service
Edit the line in the new file so that it looks like this:
ExecStart=/usr/bin/docker daemon -H fd:// –mtu=1454
MTU 1454 is a value that appears to be common with OpenStack. You can watch it on your host using ifconfig.
Finally restart Docker:
$ sudo systemctl daemon-reload $ sudo service docker restart
source share