Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Remove docker image hashes (#628)
Browse files Browse the repository at this point in the history
* remove mentions of specific image hashes in docker commands

* update docker image hash to most recent version on releases page
  • Loading branch information
ElliotFriend authored Oct 26, 2023
1 parent 19b5d9f commit 184791c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 1 addition & 5 deletions dapps/guides/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/releases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
6 changes: 3 additions & 3 deletions docs/reference/rpc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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
```
Expand Down

0 comments on commit 184791c

Please sign in to comment.