-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to --publish to private registry on Windows #109
Comments
We are seeing similar failures in riff on Windows when trying to push to Docker Hub:
Also getting error trying to use
|
@naavo are you seeing this problem with Docker Hub specifically or also with other registries? @djoyahoy and I investigated and we found a problem publishing to Docker Hub. The issue as we understand it boils down to a problem with the interaction between When you It seems like We can add a hack to pack to fix this but it would probably be best to PR changes upstream. As a workaround you could add your auth directly to the docker |
@ekcasey thank you for the explanation. We were trying to push to a private enterprise registry on artifactory. In our case just ensured that the values are correct on wincred and am not been able to push it across to the repo. |
thank you @ekasey, i was able to workaround the problem using docker.json (password elided) {
"ServerURL": "https://index.docker.io",
"Username": "jldec",
"Secret": "****"
} wincred store cat docker.json | docker-credential-wincred store
docker-credential-wincred list
{"https://index.docker.io":"jldec","https://index.docker.io/v1/":"jldec"} build output
cc: @trisberg |
We tried to make |
The latest release of |
Needs @sclevine. Also accepting other pointers for accepting this one that don't involve acquiring a windows machine. Tried using https://www.browserstack.com/, but they're only good for browser and mobile testing of web products. |
We are trying to use pack cli in one of use cases and ran into this
Pack: v0.0.9 - Windows
Use Case: Trying to wrap a spring boot application into a image and push it onto a private protected registry (i.e need access to do a push)
Issue: Unable to push the built image onto the registry using the --publish option because of authorization issues. Though we are able to push / pull images onto the same registry using simple docker push / pull commands from command line.
We used the command
The related bit of logging that we see are as follows
The text was updated successfully, but these errors were encountered: