I\'m trying to pull docker images from a private repository hosted in Docker hub https://registry.hub.docker.com/u/myname/myapp like this using the docker remote API. The do
From this merged docker pull request, it seems that X-Registry-Auth header should be a base-64 encoded json string of the form
X-Registry-Auth
{ 'username': string, 'password': string, 'email': string, 'serverddress' : string }
another reference link