Skip to content

Commit

Permalink
fix some ghcr docker call examples had a typo when specifing image tag (
Browse files Browse the repository at this point in the history
  • Loading branch information
tspascoal authored Oct 10, 2020
1 parent dc0fd48 commit bbda22c
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit bbda22c

Please sign in to comment.