From 184791c37d052bcd1c0bc1074ba3eaf5d1e422f5 Mon Sep 17 00:00:00 2001 From: Elliot Voris Date: Thu, 26 Oct 2023 17:14:43 -0500 Subject: [PATCH] Remove docker image hashes (#628) * remove mentions of specific image hashes in docker commands * update docker image hash to most recent version on releases page --- dapps/guides/docker.mdx | 6 +----- docs/reference/releases.mdx | 2 +- docs/reference/rpc.mdx | 6 +++--- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/dapps/guides/docker.mdx b/dapps/guides/docker.mdx index d9cfa274..1b2ac95d 100644 --- a/dapps/guides/docker.mdx +++ b/dapps/guides/docker.mdx @@ -87,10 +87,6 @@ futurenet) ;; 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:testing@sha256:40636cdb1b9168b47e5dc120949fe3610ff914e8dd43409edb6fa66496bdd9c3 - shift # Run the soroban-preview container @@ -126,7 +122,7 @@ docker run --rm -ti \ --name stellar \ --network soroban-network \ -p 8000:8000 \ - "$QUICKSTART_SOROBAN_DOCKER_SHA" \ + stellar/quickstart:testing \ $ARGS \ --enable-soroban-rpc \ "$@" # Pass through args from the CLI diff --git a/docs/reference/releases.mdx b/docs/reference/releases.mdx index d21fc85f..d92d7fdd 100644 --- a/docs/reference/releases.mdx +++ b/docs/reference/releases.mdx @@ -31,7 +31,7 @@ Preview releases are software releases that are also released to the [Testnet] t | Soroban RPC | `v20.0.0-rc4` | | Stellar Horizon | `2.27.0~rc2-384` | | Stellar Friendbot | `soroban-v0.0.2-alpha` | -| Stellar Quickstart | `docker.io/stellar/quickstart:testing@sha256:40636cdb1b9168b47e5dc120949fe3610ff914e8dd43409edb6fa66496bdd9c3` | +| Stellar Quickstart | `docker.io/stellar/quickstart:testing@sha256:0c756150e7b3c53603fe36bb932c4e7d7ceaef691906b2d3d952771ccc195559` | | Stellar JS Stellar Base | `10.0.0-beta.1` | | Stellar JS Soroban Client | `v1.0.0-beta.2` | | Freighter | `5.6.1` | diff --git a/docs/reference/rpc.mdx b/docs/reference/rpc.mdx index 97423d90..73a586b6 100644 --- a/docs/reference/rpc.mdx +++ b/docs/reference/rpc.mdx @@ -33,13 +33,13 @@ It's also possible to run a contract in the local sandbox environment without a ### Standalone -To run a local standalone network with the Stellar Quickstart Docker image, run the following command, double-checking that the `sha256` matches the latest on the [Releases](./releases.mdx) page: +To run a local standalone network with the Stellar Quickstart Docker image, run the following command: ```bash docker run --rm -it \ -p 8000:8000 \ --name stellar \ - stellar/quickstart:testing@sha256:1c98f895f8b69cc843eeaa5230d67044dbeb390a5529d51dd7762d8ff685c3f8 \ + stellar/quickstart:testing \ --standalone \ --enable-soroban-rpc ``` @@ -112,7 +112,7 @@ Running your own Testnet node works much the same way as running a Quickstart no docker run --rm -it \ -p 8000:8000 \ --name stellar \ - stellar/quickstart:testing@sha256:1c98f895f8b69cc843eeaa5230d67044dbeb390a5529d51dd7762d8ff685c3f8 \ + stellar/quickstart:testing \ --testnet \ --enable-soroban-rpc ```