What is the syntax to push 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 to do this:
docker push localhost:5000/oillio/my_app:1.0-SNAPSHOT
This works fine. But I can't figure out what the syntax is to do this from the API. When I try the above, I get a status 500 response with the text "EOF"