Skip to content
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

fix some ghcr docker call examples had a typo when specifying image tag #262

Merged
merged 2 commits into from
Oct 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To push and pull container images owned by an organization, an organization admi

This example pushes the latest version of `IMAGE-NAME`.
```shell
$ docker push ghcr.io/OWNER/IMAGE_NAME.latest
$ docker push ghcr.io/OWNER/IMAGE_NAME:latest
```

This example pushes the `2.5` version of the image.
Expand All @@ -42,7 +42,7 @@ To ensure you're always using the same image, you can specify the exact containe
```
2. Remove image locally as needed.
```shell
$ docker rmi ghcr.io/OWNER/IMAGE_NAME.latest
$ docker rmi ghcr.io/OWNER/IMAGE_NAME:latest
```

3. Pull the container image with `@YOUR_SHA_VALUE` after the image name.
Expand Down