Fix demo docker pull step#420
Merged
SteveLasker merged 1 commit intonotaryproject:mainfrom Oct 28, 2022
Merged
Conversation
Signed-off-by: Jeremy Rickard <jrickard@Jeremys-MacBook-Pro.local>
Codecov Report
@@ Coverage Diff @@
## main #420 +/- ##
=======================================
Coverage 34.60% 34.60%
=======================================
Files 23 23
Lines 1254 1254
=======================================
Hits 434 434
Misses 809 809
Partials 11 11 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
7h3-3mp7y-m4n
pushed a commit
to 7h3-3mp7y-m4n/notation
that referenced
this pull request
Mar 29, 2025
The current README is broken when trying to use the demo steps ``` docker run -d -p 5000:5000 --platform linux/amd64 ghcr.io/oras-project/registry:v1.0.0-rc2 Unable to find image 'ghcr.io/oras-project/registry:v1.0.0-rc2' locally docker: Error response from daemon: manifest unknown. See 'docker run --help'. ``` There needs to be a dot in the tag. ``` crane ls ghcr.io/oras-project/registry v0.0.1-alpha v0.0.2-alpha v0.0.3-alpha latest v1.0.0-rc v1.0.0-rc.2 ``` Tihis PR updates the README: ``` docker run -d -p 5000:5000 --platform linux/amd64 ghcr.io/oras-project/registry:v1.0.0-rc.2 Unable to find image 'ghcr.io/oras-project/registry:v1.0.0-rc.2' locally v1.0.0-rc.2: Pulling from oras-project/registry 9621f1afde84: Pull complete 26bf68903cef: Pull complete 1991bda9245a: Pull complete caa58183a89b: Pull complete Digest: sha256:d3b10de113cd24404a0e35e6f6949854156a839deb7204fe8dfad9cc9723b1fb Status: Downloaded newer image for ghcr.io/oras-project/registry:v1.0.0-rc.2 f11cb78ea5f1b3dff68caaae0a736e104df00ec5fe60a12a87f2058f30884455 ``` Signed-off-by: Jeremy Rickard <jrickard@Jeremys-MacBook-Pro.local>
FeynmanZhou
pushed a commit
to FeynmanZhou/notation
that referenced
this pull request
May 15, 2025
The current README is broken when trying to use the demo steps ``` docker run -d -p 5000:5000 --platform linux/amd64 ghcr.io/oras-project/registry:v1.0.0-rc2 Unable to find image 'ghcr.io/oras-project/registry:v1.0.0-rc2' locally docker: Error response from daemon: manifest unknown. See 'docker run --help'. ``` There needs to be a dot in the tag. ``` crane ls ghcr.io/oras-project/registry v0.0.1-alpha v0.0.2-alpha v0.0.3-alpha latest v1.0.0-rc v1.0.0-rc.2 ``` Tihis PR updates the README: ``` docker run -d -p 5000:5000 --platform linux/amd64 ghcr.io/oras-project/registry:v1.0.0-rc.2 Unable to find image 'ghcr.io/oras-project/registry:v1.0.0-rc.2' locally v1.0.0-rc.2: Pulling from oras-project/registry 9621f1afde84: Pull complete 26bf68903cef: Pull complete 1991bda9245a: Pull complete caa58183a89b: Pull complete Digest: sha256:d3b10de113cd24404a0e35e6f6949854156a839deb7204fe8dfad9cc9723b1fb Status: Downloaded newer image for ghcr.io/oras-project/registry:v1.0.0-rc.2 f11cb78ea5f1b3dff68caaae0a736e104df00ec5fe60a12a87f2058f30884455 ``` Signed-off-by: Jeremy Rickard <jrickard@Jeremys-MacBook-Pro.local>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The current README is broken when trying to use the demo steps
There needs to be a dot in the tag.
Tihis PR updates the README: