From 37c81d1d6dca2b7c226212ed3ac031b890368d39 Mon Sep 17 00:00:00 2001 From: David Hernando Date: Fri, 9 Feb 2024 17:25:10 +0100 Subject: [PATCH 1/3] trigger release-v156 --- BUILD.md | 8 ++++---- README.md | 4 ++-- casper-nctl.Dockerfile | 2 +- docker-compose.yml | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/BUILD.md b/BUILD.md index 8551930..ed5f165 100644 --- a/BUILD.md +++ b/BUILD.md @@ -5,7 +5,7 @@ To build the NCTL docker image run `docker build` as follows: ```bash -docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.4 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v154 . +docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.6 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v156 . ``` The argument `NODE_GITBRANCH` indicates which branch from the `casper-node` repository docker @@ -14,12 +14,12 @@ will download and build. The argument `CLIENT_GITBRANCH` indicates which branch from the `casper-client-rs` repository docker will download and build. -In the command above, the image is tagged as v154, which is the latest `casper-node` version +In the command above, the image is tagged as v156, which is the latest `casper-node` version at the moment of writing these instructions. To keep other scripts independent of the version, tag the image also as `latest` once the first build completes. ```bash -docker tag casper-nctl:v154 casper-nctl:latest +docker tag casper-nctl:v156 casper-nctl:latest ``` ## Test the docker image @@ -34,7 +34,7 @@ pip install pytest testinfra Then, run `pytest` indicating the name of the docker image to test: ``` -pytest --image casper-nctl:v154 +pytest --image casper-nctl:v156 ``` ## Configure Docker Hub Automated Builds diff --git a/README.md b/README.md index 17fbf12..a05c62f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > **Warning** > Images published on Docker Hub are not stable on Apple computers with M1/M2 chips. We recommend that you build the docker image locally using the [BUILD](./BUILD.md) instructions. -[NCTL](https://github.com/casper-network/casper-node/tree/release-1.4.3/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. +[NCTL](https://github.com/casper-network/casper-node/tree/release-1.5.6/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. ## How to use this image @@ -40,7 +40,7 @@ In a Powershell terminal, run: where `mynctl` is the name of the container. -Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.4.3/utils/nctl/docs/commands.md). +Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.5.6/utils/nctl/docs/commands.md). Sometimes you may need the secret key of the faucet, a node or one of the predefined users. After activating `nctl-*` commands you can execute the following commands: diff --git a/casper-nctl.Dockerfile b/casper-nctl.Dockerfile index 7298b84..473ff59 100644 --- a/casper-nctl.Dockerfile +++ b/casper-nctl.Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:focal -ARG NODE_GITBRANCH=release-1.5.5 +ARG NODE_GITBRANCH=release-1.5.6 ARG CLIENT_GITBRANCH=release-2.0.0 # DEBIAN_FRONTEND required for tzdata dependency install diff --git a/docker-compose.yml b/docker-compose.yml index ab69459..83f63f8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,6 +8,7 @@ services: - 11101-11105:11101-11105 - 14101-14105:14101-14105 - 18101-18105:18101-18105 + - 25101-25105:25101-25105 environment: PREDEFINED_ACCOUNTS: 'true' #PATH_TO_CONFIG_TOML: '/home/casper/config/config.toml' From a1e574fa5b2074e869fcf23bb07d8d4482084363 Mon Sep 17 00:00:00 2001 From: David Hernando Date: Wed, 7 Aug 2024 14:08:44 +0200 Subject: [PATCH 2/3] trigger release-v157 --- BUILD.md | 8 ++++---- README.md | 4 ++-- casper-nctl.Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/BUILD.md b/BUILD.md index ed5f165..029e3a3 100644 --- a/BUILD.md +++ b/BUILD.md @@ -5,7 +5,7 @@ To build the NCTL docker image run `docker build` as follows: ```bash -docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.6 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v156 . +docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.7 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v157 . ``` The argument `NODE_GITBRANCH` indicates which branch from the `casper-node` repository docker @@ -14,12 +14,12 @@ will download and build. The argument `CLIENT_GITBRANCH` indicates which branch from the `casper-client-rs` repository docker will download and build. -In the command above, the image is tagged as v156, which is the latest `casper-node` version +In the command above, the image is tagged as v157, which is the latest `casper-node` version at the moment of writing these instructions. To keep other scripts independent of the version, tag the image also as `latest` once the first build completes. ```bash -docker tag casper-nctl:v156 casper-nctl:latest +docker tag casper-nctl:v157 casper-nctl:latest ``` ## Test the docker image @@ -34,7 +34,7 @@ pip install pytest testinfra Then, run `pytest` indicating the name of the docker image to test: ``` -pytest --image casper-nctl:v156 +pytest --image casper-nctl:v157 ``` ## Configure Docker Hub Automated Builds diff --git a/README.md b/README.md index a05c62f..42fa9af 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > **Warning** > Images published on Docker Hub are not stable on Apple computers with M1/M2 chips. We recommend that you build the docker image locally using the [BUILD](./BUILD.md) instructions. -[NCTL](https://github.com/casper-network/casper-node/tree/release-1.5.6/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. +[NCTL](https://github.com/casper-network/casper-node/tree/release-1.5.7/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. ## How to use this image @@ -40,7 +40,7 @@ In a Powershell terminal, run: where `mynctl` is the name of the container. -Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.5.6/utils/nctl/docs/commands.md). +Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.5.7/utils/nctl/docs/commands.md). Sometimes you may need the secret key of the faucet, a node or one of the predefined users. After activating `nctl-*` commands you can execute the following commands: diff --git a/casper-nctl.Dockerfile b/casper-nctl.Dockerfile index 473ff59..ae5f448 100644 --- a/casper-nctl.Dockerfile +++ b/casper-nctl.Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:focal -ARG NODE_GITBRANCH=release-1.5.6 +ARG NODE_GITBRANCH=release-1.5.7 ARG CLIENT_GITBRANCH=release-2.0.0 # DEBIAN_FRONTEND required for tzdata dependency install From 736ba13cae6180423e563a369a4585f3edcb21ac Mon Sep 17 00:00:00 2001 From: David Hernando Date: Wed, 21 Aug 2024 15:31:09 +0200 Subject: [PATCH 3/3] Built image for v158 Signed-off-by: David Hernando --- BUILD.md | 8 ++++---- README.md | 4 ++-- casper-nctl.Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/BUILD.md b/BUILD.md index 029e3a3..46fcef8 100644 --- a/BUILD.md +++ b/BUILD.md @@ -5,7 +5,7 @@ To build the NCTL docker image run `docker build` as follows: ```bash -docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.7 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v157 . +docker build -f casper-nctl.Dockerfile --build-arg NODE_GITBRANCH=release-1.5.8 --build-arg CLIENT_GITBRANCH=release-2.0.0 -t casper-nctl:v158 . ``` The argument `NODE_GITBRANCH` indicates which branch from the `casper-node` repository docker @@ -14,12 +14,12 @@ will download and build. The argument `CLIENT_GITBRANCH` indicates which branch from the `casper-client-rs` repository docker will download and build. -In the command above, the image is tagged as v157, which is the latest `casper-node` version +In the command above, the image is tagged as v158, which is the latest `casper-node` version at the moment of writing these instructions. To keep other scripts independent of the version, tag the image also as `latest` once the first build completes. ```bash -docker tag casper-nctl:v157 casper-nctl:latest +docker tag casper-nctl:v158 casper-nctl:latest ``` ## Test the docker image @@ -34,7 +34,7 @@ pip install pytest testinfra Then, run `pytest` indicating the name of the docker image to test: ``` -pytest --image casper-nctl:v157 +pytest --image casper-nctl:v158 ``` ## Configure Docker Hub Automated Builds diff --git a/README.md b/README.md index 42fa9af..4d50aae 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > **Warning** > Images published on Docker Hub are not stable on Apple computers with M1/M2 chips. We recommend that you build the docker image locally using the [BUILD](./BUILD.md) instructions. -[NCTL](https://github.com/casper-network/casper-node/tree/release-1.5.7/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. +[NCTL](https://github.com/casper-network/casper-node/tree/release-1.5.8/utils/nctl) is a CLI application to control one or multiple Casper networks locally. Many developers wish to spin up relatively small test networks to localize their testing before deploying to the blockchain. ## How to use this image @@ -40,7 +40,7 @@ In a Powershell terminal, run: where `mynctl` is the name of the container. -Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.5.7/utils/nctl/docs/commands.md). +Now you can write in the host machine commands like `nctl-view-faucet-account`, `nctl-transfer-native`, etc. For a complete list of commands, visit [this page](https://github.com/casper-network/casper-node/blob/release-1.5.8/utils/nctl/docs/commands.md). Sometimes you may need the secret key of the faucet, a node or one of the predefined users. After activating `nctl-*` commands you can execute the following commands: diff --git a/casper-nctl.Dockerfile b/casper-nctl.Dockerfile index ae5f448..8322790 100644 --- a/casper-nctl.Dockerfile +++ b/casper-nctl.Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:focal -ARG NODE_GITBRANCH=release-1.5.7 +ARG NODE_GITBRANCH=release-1.5.8 ARG CLIENT_GITBRANCH=release-2.0.0 # DEBIAN_FRONTEND required for tzdata dependency install