From 19dd3326f0ac0dc97a761a1bc898a64e83ae3c36 Mon Sep 17 00:00:00 2001 From: Serhii Shymkiv Date: Fri, 24 Nov 2023 13:59:28 +0200 Subject: [PATCH] Main mina repo branch chanfged. --- DockerHub.md | 14 +++++++------- scripts/build-all.sh | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/DockerHub.md b/DockerHub.md index 68b5dec..257301c 100644 --- a/DockerHub.md +++ b/DockerHub.md @@ -56,7 +56,7 @@ docker run --rm --pull=always -it \ -p 8080:8080 \ -p 8181:8181 \ -p 8282:8282 \ - o1labs/mina-local-network:rampup-latest-lightnet + o1labs/mina-local-network:o1js-main-latest-lightnet ``` #### Single Node network properties @@ -93,7 +93,7 @@ jobs: ... services: mina-local-network: - image: o1labs/mina-local-network:rampup-latest-lightnet + image: o1labs/mina-local-network:o1js-main-latest-lightnet env: NETWORK_TYPE: 'single-node' PROOF_LEVEL: 'none' @@ -177,7 +177,7 @@ docker run --rm --pull=always -it \ -p 8080:8080 \ -p 8181:8181 \ -p 8282:8282 \ - o1labs/mina-local-network:rampup-latest-lightnet + o1labs/mina-local-network:o1js-main-latest-lightnet ``` #### Multi-Node network properties @@ -261,14 +261,14 @@ By default, logs produced by different processes will be redirected into the fil ## Image tags anatomy -Several image tags are available for download, like: +Several image tags are available for download like: -- `rampup-latest-lightnet` +- `o1js-main-latest-lightnet` where: -- The `rampup` prefix corresponds to the Mina GitHub repository branch -- The `lightnet` suffix corresponds to the Dune profile that is used during the application build procedure +- The `o1js-main` prefix corresponds to the Mina GitHub repository branch +- The `lightnet` suffix corresponds to the Dune profile that was used during the application build procedure for current image tag ## Mina accounts manager API diff --git a/scripts/build-all.sh b/scripts/build-all.sh index fc97f50..8688cd5 100755 --- a/scripts/build-all.sh +++ b/scripts/build-all.sh @@ -84,12 +84,12 @@ cd ${CURRENT_DIR} for TARGET_BRANCH in "${TARGET_BRANCHES[@]}"; do echo "" - echo "[INFO] Building Mina at branch: '${TARGET_BRANCH}' and then the corresponding Docker Image" + echo "[INFO] Building Mina at branch: '${TARGET_BRANCH}' and then building the corresponding Docker Image" echo "" BRANCH_NAME=${TARGET_BRANCH} - if [[ $TARGET_BRANCH == "o1js-main" ]]; then - BRANCH_NAME="rampup" - fi + # if [[ $TARGET_BRANCH == "o1js-main" ]]; then + # BRANCH_NAME="rampup" + # fi gitPullAll && gitPullAll git checkout ${TARGET_BRANCH}