Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion content/guides/operator-quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ docker run -d \
-p 9182:9181 \
-p 9172:9171 \
-p 8081:8080 \
ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
```

`BOOTSTRAP_PEERS` is an override. The same value is in the config file, but some Host client builds also read the env var, so we set both.
Expand Down
6 changes: 3 additions & 3 deletions content/hosts/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Pull the image and start it with a single `docker run`. You supply two values: a
1. Pull the image:

```shell
docker pull ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
docker pull ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
```

1. Generate a secure key for the `DEFRA_KEYRING_SECRET`:
Expand Down Expand Up @@ -54,7 +54,7 @@ Pull the image and start it with a single `docker run`. You supply two values: a
-p 9181:9181 \
-p 9182:9182 \
-p 9171:9171 \
ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
```

{% admonition(type="info") %}
Expand Down Expand Up @@ -115,7 +115,7 @@ docker run -d \
-p 9181:9181 \
-p 9182:9182 \
-p 9171:9171 \
ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
```

{% admonition(type="warning") %}
Expand Down
4 changes: 2 additions & 2 deletions content/hosts/quickstart/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ networks:

services:
shinzo-host:
image: ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
image: ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
user: "1001:1001"
mem_limit: 16g
mem_reservation: 13g
Expand Down Expand Up @@ -318,7 +318,7 @@ docker logs shinzo-host
The multi-stage Dockerfile builds the host binary (Go 1.25) along with the Wasmtime and Wasmer WASM runtimes. The production image is based on Ubuntu 24.04 and runs as a non-root `shinzo` user. Pre-built images are published to:

```shell
ghcr.io/shinzonetwork/shinzo-host-client:v0.6.5-ethereum-mainnet
ghcr.io/shinzonetwork/shinzo-host-client:ethereum-mainnet-latest
```

## ShinzoHub Registration
Expand Down
Loading