Skip to content

Commit

Permalink
add config file for cli command
Browse files Browse the repository at this point in the history
  • Loading branch information
bysomeone authored and vipwzw committed Jan 18, 2024
1 parent 19e7d98 commit 0d0e378
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/dapp/rollup/cmd/ci/docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ PWD=$(cd "$(dirname "$0")" && pwd)
export PATH="$PWD:$PATH"

MAIN_NODE="${1}_main_1"
MAIN_CLI="docker exec ${MAIN_NODE} /root/chain33-cli"
MAIN_CLI="docker exec ${MAIN_NODE} /root/chain33-cli --conf=chain33.test.toml"

PARA_NODE="${1}_para1_1"
CLI="docker exec ${PARA_NODE} /root/chain33-cli --paraName=user.p.para."
CLI="docker exec ${PARA_NODE} /root/chain33-cli --conf=chain33.para1.toml --paraName=user.p.para."

PARA_NODE2="${1}_para2_1"
CLI2="docker exec ${PARA_NODE2} /root/chain33-cli --paraName=user.p.para."
CLI2="docker exec ${PARA_NODE2} /root/chain33-cli --conf=chain33.para2.toml --paraName=user.p.para."

# shellcheck disable=SC2034

Expand Down

0 comments on commit 0d0e378

Please sign in to comment.