1
0
mirror of synced 2026-01-06 15:01:04 -05:00

Merge pull request #17600 from blue-jam/patch-2

Typo: make container name consistent
This commit is contained in:
Janice
2022-05-24 10:02:42 -07:00
committed by GitHub

View File

@@ -50,14 +50,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 {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE_NAME:latest
```
This example pushes the `2.5` version of the image.
```shell
$ docker push {% data reusables.package_registry.container-registry-hostname %}/OWNER/IMAGE-NAME:2.5
$ docker push {% data reusables.package_registry.container-registry-hostname %}/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)."