Skip to content
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

docs: update container image #1727

Merged
merged 2 commits into from
Oct 30, 2023
Merged
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
8 changes: 4 additions & 4 deletions docs/docs-content/registries-and-packs/deploy-pack.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<br />

```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.
<br />

```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.
Expand Down Expand Up @@ -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
```

<br />
Expand Down