Skip to content

Typo: make container name consistent #17608

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

Closed
wants to merge 1 commit into from
Closed
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 @@ -35,14 +35,14 @@ When installing or publishing a Docker image, the {% data variables.product.prod

## Pushing container images

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

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

When you first publish a package, the default visibility is private. To change the visibility or set access permissions, see "[Configuring a package's access control and visibility](/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility)."
Expand Down