Hi anvika1 - Can you please post the exact command you ran to push the image into the repository?
One common gotcha is forgetting to put the namespace in from of the repo name during the push. The namespace is usually a org name or a user id in DTR.
So, instead of running docker push dtr.example.com/myrepo:1.0 you would need to run docker push dtr.example.com/myorg/myrepo:1.0. Of course you need to tag the image appropriately before doing the push.
Can you run docker login first? It will prompt you for user id, password and email. These should be as configured at hub.docker.com. Then please attempt the push again.
I am writing you about a question as nobody has replied to it in the forum. I am using docker-py to remotely invoke docker to perform operations. The problem is I am using docker on windows and I am having trouble in making docker listen to a tcp port. I know the docker.conf file has to be changed. I can do that in ubuntu, but i don’t know how it works on windows. I am getting an error when I run the python script,
cli = Client(base_url=‘unix://var/run/docker.sock’). I also tried changing it to, cli = client(base_url=’-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock’). I still get an error which says:
Traceback (most recent call last):
File “”, line 1, in
TypeError: ‘module’ object is not callable
which i think is because of not changing the TCP port. Please help me out.