Release with version.

This commit is contained in:
ravinsp
2022-06-19 00:52:34 +05:30
parent f5c366fbd6
commit e08d012efb
4 changed files with 16 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
# This image contains scripts for creating Hot Pocket contract clusters
# on the developer machine for local development testing.
# docker build -t hpdevkit .
# docker build -t evernodedev/hpdevkit .
# docker push evernodedev/hpdevkit
FROM ubuntu:focal as builder
RUN apt-get update && apt-get install -y wget

View File

@@ -136,7 +136,7 @@ function bind_mesh {
let peer_port=22860+$i
let user_port=8080+$i
jq ".contract.id=$contract_id | .mesh.port=$peer_port | .user.port=$user_port" $cfg_file > $cfg_file.tmp \
jq ".contract.id=$contract_id | .contract.roundtime=2000 | .mesh.port=$peer_port | .user.port=$user_port" $cfg_file > $cfg_file.tmp \
&& mv $cfg_file.tmp $cfg_file
all_pubkeys[i]=$(jq --raw-output ".node.public_key" $cfg_file)