Unable to pull from private registry

docker pull 192.168.99.100:5000/hello-world

Getting the below error while trying to pull th eimage from private registry.Using Dockertoolbox platform ’
Using default tag: latest
Error response from daemon: Get https://192.168.99.100:5000/v2/: http: server gave HTTP response to HTTPS client

docker uses secure registries by default (as it should)
You have to explicitly configure your insecure registries.
https://docs.docker.com/registry/insecure/

The discussion here will be useful :

https://forums.docker.com/t/error-response-from-daemon-get-https-registry-1-docker-io-v2/23741/18