Skip to content

Commit

Permalink
Main mina repo branch chanfged.
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv committed Nov 24, 2023
1 parent a2e2adf commit 19dd332
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions DockerHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 19dd332

Please sign in to comment.