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

Commit

Permalink
remove mentions of specific image hashes in docker commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotFriend committed Oct 26, 2023
1 parent 19b5d9f commit 4f25de6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 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
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 4f25de6

Please sign in to comment.