From b853e0003569a44b8a4556e544c326573b4f9666 Mon Sep 17 00:00:00 2001 From: caroldelwing Date: Mon, 30 Oct 2023 17:59:05 -0400 Subject: [PATCH] docs: update container image --- docs/docs-content/registries-and-packs/deploy-pack.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs-content/registries-and-packs/deploy-pack.md b/docs/docs-content/registries-and-packs/deploy-pack.md index 4c9b54e670..61dc24d4ef 100644 --- a/docs/docs-content/registries-and-packs/deploy-pack.md +++ b/docs/docs-content/registries-and-packs/deploy-pack.md @@ -61,18 +61,18 @@ Start the Docker Desktop on your local machine and ensure the daemon is availabl docker ps ``` -Download the `ghcr.io/spectrocloud/tutorials:1.0.4` image to your local machine. The Docker image includes the necessary tools. +Download the `ghcr.io/spectrocloud/tutorials:1.0.8` image to your local machine. The Docker image includes the necessary tools.
```bash -docker pull ghcr.io/spectrocloud/tutorials:1.0.4 +docker pull ghcr.io/spectrocloud/tutorials:1.0.8 ``` Next, start the container, and open a bash session into it.
```bash -docker run --name tutorialContainer --publish 7000:5000 --interactive --tty ghcr.io/spectrocloud/tutorials:1.0.4 bash +docker run --name tutorialContainer --publish 7000:5000 --interactive --tty ghcr.io/spectrocloud/tutorials:1.0.8 bash ``` If port 7000 on your local machine is unavailable, you can use any other port of your choice. @@ -926,7 +926,7 @@ Stop the registry server by closing the tutorials container bash session that se ```bash docker container rm --force tutorialContainer -docker image rm --force ghcr.io/spectrocloud/tutorials:1.0.3 +docker image rm --force ghcr.io/spectrocloud/tutorials:1.0.8 ```