From 9a0cb726ad555efd7448d91d17b8fba0d00fe217 Mon Sep 17 00:00:00 2001 From: blue-jam Date: Wed, 4 May 2022 09:04:51 +0900 Subject: [PATCH] Typo: make container name consistent --- .../working-with-the-container-registry.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/packages/working-with-a-github-packages-registry/working-with-the-container-registry.md b/content/packages/working-with-a-github-packages-registry/working-with-the-container-registry.md index 48ed86228b59..19ce6bdeba7c 100644 --- a/content/packages/working-with-a-github-packages-registry/working-with-the-container-registry.md +++ b/content/packages/working-with-a-github-packages-registry/working-with-the-container-registry.md @@ -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)."