From 1b6f55cf6f75675badca0838cafa54718a732a32 Mon Sep 17 00:00:00 2001 From: Lillithlilly <102643890+Lillithlilly@users.noreply.github.com> Date: Fri, 8 Apr 2022 20:37:20 -0700 Subject: [PATCH] Update working-with-the-container-registry.md 38f737a91f39 --- .../working-with-the-container-registry.md | 6 +++--- 1 file changed, 3 insertions(+), 3 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..ebd01e1c11b6 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 @@ -70,7 +70,7 @@ To ensure you're always using the same image, you can specify the exact containe ### Pull by name ```shell - $ docker pull ghcr.io/OWNER/IMAGE_NAME + $ docker pull ghcr.io/lillylillith/IMAGE_NAME ``` ### Pull by name and version @@ -90,7 +90,7 @@ Docker CLI example showing an image pulled by its name and the `1.14.1` version ### Pull by name and latest version ```shell - $ docker pull ghcr.io/OWNER/IMAGE_NAME:latest + $ docker pull ghcr.io/lillylillith/IMAGE_NAME:latest > latest: Pulling from user/image-name > Digest: sha256:b3d3e366b55f9a54599220198b3db5da8f53592acbbb7dc7e4e9878762fc5344 > Status: Downloaded newer image for ghcr.io/user/image-name:latest @@ -117,5 +117,5 @@ This example builds the `hello_docker` image: 2. Tag your Docker image using the image ID and your desired image name and hosting destination. ```shell - $ docker tag 38f737a91f39 ghcr.io/OWNER/NEW_IMAGE_NAME:latest + $ docker tag 38f737a91f39 ghcr.io/lillylillith/NEW_IMAGE_NAME:latest ```