What is the syntax to direct an image to a private registry?
From the documentation, I would expect the below to work:
curl -X POST -i "http://localhost:2375/images/localhost:5000/oillio/my_app:1.0-SNAPSHOT/push"
I can use the CLI for this:
docker push localhost:5000/oillio/my_app:1.0-SNAPSHOT
It works great. But I can't figure out which syntax should do this from the API. When I try the above, I get a 500 status response with the text "EOF"
source
share