Skip to content

Commit d5340de

Browse files
committed
fix(docs): update default tags to v1.11.0
1 parent 7a44f93 commit d5340de

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/run-node/2-from-source.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Make sure to check the [hardware requirements](/run-node/system-requirements) be
3030
# 1. Find the latest stable release tag from:
3131
# https://github.com/flare-foundation/go-flare/releases
3232
# 2. Set the tag name in the variable below:
33-
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
33+
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
3434
```
3535

3636
2. Clone and build the binary:
@@ -241,7 +241,7 @@ To update your node to a newer version of go-flare:
241241
# 1. Find the latest stable release tag from:
242242
# https://github.com/flare-foundation/go-flare/releases
243243
# 2. Set the tag name in the variable below:
244-
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.1
244+
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
245245
git checkout ${LATEST_TAG}
246246
```
247247

docs/run-node/3-using-docker.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ This guide will show examples of running the node using both Docker CLI and Dock
151151
# 1. Find the latest stable release tag from:
152152
# https://hub.docker.com/r/flarefoundation/go-flare/tags
153153
# 2. Set the tag name in the variable below (only use versioned tags):
154-
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
154+
LATEST_TAG="vX.Y.Z" # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
155155
```
156156

157157
2. Start the container:
@@ -403,7 +403,7 @@ In this guide the `docker-compose.yaml` file is created in `/opt/node` but the l
403403
# 1. Find the latest stable release tag from:
404404
# https://hub.docker.com/r/flarefoundation/go-flare/tags
405405
# 2. Set the tag name in the variable below (only use versioned tags):
406-
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
406+
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
407407
restart: on-failure
408408
environment:
409409
- NETWORK_ID=flare
@@ -430,7 +430,7 @@ In this guide the `docker-compose.yaml` file is created in `/opt/node` but the l
430430
# 1. Find the latest stable release tag from:
431431
# https://hub.docker.com/r/flarefoundation/go-flare/tags
432432
# 2. Set the tag name in the variable below (only use versioned tags):
433-
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
433+
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
434434
restart: on-failure
435435
environment:
436436
- NETWORK_ID=costwo
@@ -457,7 +457,7 @@ In this guide the `docker-compose.yaml` file is created in `/opt/node` but the l
457457
# 1. Find the latest stable release tag from:
458458
# https://hub.docker.com/r/flarefoundation/go-flare/tags
459459
# 2. Set the tag name in the variable below (only use versioned tags):
460-
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
460+
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
461461
restart: on-failure
462462
environment:
463463
- NETWORK_ID=songbird
@@ -484,7 +484,7 @@ In this guide the `docker-compose.yaml` file is created in `/opt/node` but the l
484484
# 1. Find the latest stable release tag from:
485485
# https://hub.docker.com/r/flarefoundation/go-flare/tags
486486
# 2. Set the tag name in the variable below (only use versioned tags):
487-
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.10.0
487+
image: flarefoundation/go-flare:vX.Y.Z # <-- REPLACE vX.Y.Z WITH THE ACTUAL LATEST TAG e.g. v1.11.0
488488
restart: on-failure
489489
environment:
490490
- NETWORK_ID=coston
@@ -635,7 +635,7 @@ To update your node to a newer go-flare version:
635635
3. Update the `docker-compose.yaml` file with the new tag and start the new container:
636636

637637
```bash
638-
LATEST_TAG="vX.Y.Z" # <-- Replace with the actual latest tag e.g v1.10.0
638+
LATEST_TAG="vX.Y.Z" # <-- Replace with the actual latest tag e.g v1.11.0
639639
yq -i ".services.node.image = flarefoundation/go-flare:${LATEST_TAG}" /opt/node/docker-compose.yaml
640640
docker compose -f /opt/node/docker-compose.yaml up -d
641641
```

docs/run-node/4-register-validator.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ This ensures your node always starts with the correct `Node-ID`.
127127

128128
```bash
129129
# Find the latest tag at [https://hub.docker.com/r/flarefoundation/go-flare/tags](https://hub.docker.com/r/flarefoundation/go-flare/tags)
130-
LATEST_TAG="vX.Y.Z" # e.g., v1.10.0
130+
LATEST_TAG="vX.Y.Z" # e.g., v1.11.0
131131

132132
# Mount the staking volume and set the staking path environment variables
133133
docker run -d --name flare-node \

0 commit comments

Comments
 (0)