Skip to content

Commit 6d68474

Browse files
committed
docs: update Cardano node version to '9.1.0' in examples
1 parent 0fae170 commit 6d68474

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

docs/website/root/manual/getting-started/bootstrap-cardano-node.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ You will see more information about the snapshot:
436436
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
437437
| Size | 2323485648 |
438438
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
439-
| Cardano node version | 9.0.0 |
439+
| Cardano node version | 9.1.0 |
440440
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
441441
| Location | https://storage.googleapis.com/cdn.aggregator.testing-preview.api.mithril.network/preview-e539-i10787.db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667.tar.zst |
442442
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -464,19 +464,19 @@ You will see that the selected snapshot archive has been downloaded locally, unp
464464
5/5 - Verifying the cardano db signature…
465465
Cardano db 'db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667' has been unpacked and successfully checked against Mithril multi-signature contained in the certificate.
466466
467-
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.0.0.
467+
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.1.0.
468468
469469
If you are using Cardano Docker image, you can restore a Cardano Node with:
470470
471-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.0.0
471+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.1.0
472472
```
473473
474474
### Step 5: Launch a Cardano node from the restored Cardano DB snapshot
475475
476476
Launch an empty Cardano node and make it live in minutes!
477477
478478
```bash
479-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="$(pwd)/data/testnet/$SNAPSHOT_DIGEST/db",target=/data/db/ -e NETWORK=$CARDANO_NETWORK ghcr.io/intersectmbo/cardano-node:9.0.0
479+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="$(pwd)/data/testnet/$SNAPSHOT_DIGEST/db",target=/data/db/ -e NETWORK=$CARDANO_NETWORK ghcr.io/intersectmbo/cardano-node:9.1.0
480480
```
481481
482482
You will see the Cardano node start by validating the files ingested from the snapshot archive. Then, it will synchronize with the other network nodes and start adding blocks:

docs/website/root/manual/getting-started/run-mithril-devnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ You will see more information about the snapshot:
486486
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
487487
| Size | 2323485648 |
488488
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
489-
| Cardano node version | 9.0.0 |
489+
| Cardano node version | 9.1.0 |
490490
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
491491
| Location | https://storage.googleapis.com/cdn.aggregator.testing-preview.api.mithril.network/preview-e539-i10787.db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667.tar.zst |
492492
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -514,9 +514,9 @@ You will see that the certificate chain is validated to ensure the issued certif
514514
5/5 - Verifying the cardano db signature…
515515
Cardano db 'db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667' has been unpacked and successfully checked against Mithril multi-signature contained in the certificate.
516516

517-
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.0.0.
517+
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.1.0.
518518

519519
If you are using Cardano Docker image, you can restore a Cardano Node with:
520520

521-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.0.0
521+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.1.0
522522
```

docs/website/versioned_docs/version-maintained/manual/getting-started/bootstrap-cardano-node.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ You will see more information about the snapshot:
436436
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
437437
| Size | 2323485648 |
438438
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
439-
| Cardano node version | 9.0.0 |
439+
| Cardano node version | 9.1.0 |
440440
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
441441
| Location | https://storage.googleapis.com/cdn.aggregator.testing-preview.api.mithril.network/preview-e539-i10787.db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667.tar.zst |
442442
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -464,19 +464,19 @@ You will see that the selected snapshot archive has been downloaded locally, unp
464464
5/5 - Verifying the cardano db signature…
465465
Cardano db 'db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667' has been unpacked and successfully checked against Mithril multi-signature contained in the certificate.
466466
467-
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.0.0.
467+
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.1.0.
468468
469469
If you are using Cardano Docker image, you can restore a Cardano Node with:
470470
471-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.0.0
471+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.1.0
472472
```
473473
474474
### Step 5: Launch a Cardano node from the restored Cardano DB snapshot
475475
476476
Launch an empty Cardano node and make it live in minutes!
477477
478478
```bash
479-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="$(pwd)/data/testnet/$SNAPSHOT_DIGEST/db",target=/data/db/ -e NETWORK=$CARDANO_NETWORK ghcr.io/intersectmbo/cardano-node:9.0.0
479+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="$(pwd)/data/testnet/$SNAPSHOT_DIGEST/db",target=/data/db/ -e NETWORK=$CARDANO_NETWORK ghcr.io/intersectmbo/cardano-node:9.1.0
480480
```
481481
482482
You will see the Cardano node start by validating the files ingested from the snapshot archive. Then, it will synchronize with the other network nodes and start adding blocks:

docs/website/versioned_docs/version-maintained/manual/getting-started/run-mithril-devnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ You will see more information about the snapshot:
486486
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
487487
| Size | 2323485648 |
488488
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
489-
| Cardano node version | 9.0.0 |
489+
| Cardano node version | 9.1.0 |
490490
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
491491
| Location | https://storage.googleapis.com/cdn.aggregator.testing-preview.api.mithril.network/preview-e539-i10787.db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667.tar.zst |
492492
+-----------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -514,9 +514,9 @@ You will see that the certificate chain is validated to ensure the issued certif
514514
5/5 - Verifying the cardano db signature…
515515
Cardano db 'db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667' has been unpacked and successfully checked against Mithril multi-signature contained in the certificate.
516516

517-
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.0.0.
517+
Files in the directory '/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db' can be used to run a Cardano node with version >= 9.1.0.
518518

519519
If you are using Cardano Docker image, you can restore a Cardano Node with:
520520

521-
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.0.0
521+
docker run -v cardano-node-ipc:/ipc -v cardano-node-data:/data --mount type=bind,source="/home/mithril/data/testnet/db5f50a060d4b813125c4263b700ecc96e5d8c8710f0430e5c80d2f0fa79b667/db",target=/data/db/ -e NETWORK=preview ghcr.io/intersectmbo/cardano-node:9.1.0
522522
```

0 commit comments

Comments
 (0)