-
Notifications
You must be signed in to change notification settings - Fork 509
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
--push
fails with unexpected status: 404 Not Found
#196
Comments
cc @dmcgowan |
Any updates on this? Should this be followed up from the Artifactory team instead? |
Same issue. need it. |
Same issue using latest version of builx and artifactory version 6.16.0 |
Same issue here, with a locally hosted repository that has worked previously. |
Perhaps this issue I filed is related: #271 |
Same issue here, with a locally hosted harbor repository. |
I'm running into the same issue in 2021 with Artifactory |
@dathdev I suspect that this is related to https://www.jfrog.com/jira/browse/RTFACT-20814, which should be fixed in releases 6.20.0 and 7.5.0 |
My issue was that I was pushing to an inexistent repository (I had put the wrong url), thus my error. It worked after using the right URL |
FYI I can confirm is that upgrading to a current version of Artifactory makes this problem go away. |
Since which Artifactory version it works ? |
I can confirm this was fixed when I upgraded Artifactory past 6.20.0. |
same issue |
Running
docker build -t myregistry.jfrog.io/backend/test --push --progress=plain .
ends with:You can
--push
the image to DockerHub successfully, but not Artifactory's Docker registry, althoughdocker push
is successful on both registries. So, I tried to capture the network requests, and realized that there's a small difference between the waydocker push
anddocker buildx build --push
push the image layers.Apparently,
docker push
does a sequence ofPOST
,PATCH
, andPUT
(with no body), whiledocker buildx build --push
does aPOST
followed by aPUT
(with body). The latterPUT
results in a 404 BLOB_UNKNOWN on Artifactory.So, is it possible to change the behavior of
docker buildx build --push
to match that ofdocker build
so that other registries work as expected? Please note that the same issue happens for--cache-to
.The text was updated successfully, but these errors were encountered: