1 Star 0 Fork 0

liulinhui/swarm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
docker-edit.sh 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
liulinhui 提交于 2021-06-03 07:22 . a
#!/usr/bin/env sh
dataPath=/opt/swarm/beeData
capacity="20000000"
beeVersion=bee:0.6.2
#api-addr 1633
if [ x"$1" = x ]; then
exit 0
fi
#p2p-addr 1634
if [ x"$2" = x ]; then
exit 0
fi
#debug-api-addr 1635
if [ x"$3" = x ]; then
exit 0
fi
#name node1
if [ x"$4" = x ]; then
exit 0
fi
#--db-capacity
if [ x"$5" != x ]; then
capacity=$5
fi
# --swap-endpoint
if [ x"$6" = x ]; then
exit 0
fi
# --password
if [ x"$7" = x ]; then
exit 0
fi
api_addr=$1
p2p_addr=$2
debug_addr=$3
nodeName=$4
#--swap-endpoint https://goerli.infura.io/v3/40ace318b48b4a7da4694e5e4863f8d0 \
swapEndpoint=$6
password=$7
del() {
docker pull ethersphere/$beeVersion
docker stop $nodeName
docker rm $nodeName
}
start() {
docker run -d \
--restart=always \
--name=$nodeName \
-m 3000M \
-v $dataPath/$nodeName:/home/bee/.bee \
-p $debug_addr:1635 \
-p $p2p_addr:1634 \
-p $api_addr:1633 \
-it ethersphere/$beeVersion \
start \
--password $password \
--verbosity 3 \
--full-node \
--swap-endpoint $swapEndpoint \
--debug-api-enable
}
del
start
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liulinhui1994/swarm.git
git@gitee.com:liulinhui1994/swarm.git
liulinhui1994
swarm
swarm
main

搜索帮助