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