From 248caf088762b23d6931261e321b25d2bb36c5f1 Mon Sep 17 00:00:00 2001 From: Julian Martinez Date: Wed, 4 Oct 2023 17:19:53 -0700 Subject: [PATCH] update Soroban version --- dapps/guides/docker.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dapps/guides/docker.mdx b/dapps/guides/docker.mdx index 08b99fec..d9cfa274 100644 --- a/dapps/guides/docker.mdx +++ b/dapps/guides/docker.mdx @@ -30,7 +30,7 @@ This command simplifies the Docker build process and ensures it's consistently e ```bash docker build . \ - --tag soroban-preview:9 \ + --tag soroban-preview:11 \ --force-rm \ --rm ``` @@ -44,7 +44,7 @@ docker build . Instructs Docker to build an image using the Dockerfile in the current directory (denoted by the "."). ```bash ---tag soroban-preview:9 +--tag soroban-preview:11 ``` Gives a name and tag to our image, in this case, soroban-preview with the tag 9. @@ -89,7 +89,7 @@ esac # this is set to the quickstart `soroban-dev` image anointed as the release # for a given Soroban Release, it is captured on Soroban Releases - https://soroban.stellar.org/docs/reference/releases -QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:soroban-dev@sha256:ed57f7a7683e3568ae401f5c6e93341a9f77d8ad41191bf752944d7898981e0c +QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:testing@sha256:40636cdb1b9168b47e5dc120949fe3610ff914e8dd43409edb6fa66496bdd9c3 shift @@ -118,7 +118,7 @@ docker run -dti \ -p 8001:8000 \ --ipc=host \ --network soroban-network \ - soroban-preview:9 + soroban-preview:11 # Run the stellar quickstart image