Update duokai.sh

This commit is contained in:
smeb y 2024-06-28 17:55:01 +08:00 committed by GitHub
parent eb133e035e
commit 16f20d4a50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ else
fi fi
# 拉取Docker镜像 # 拉取Docker镜像
docker pull nezha123/titan-edge:1.6 docker pull nezha123/titan-edge:1.6_amd64
# 创建用户指定数量的容器 # 创建用户指定数量的容器
for ((i=1; i<=container_count; i++)) for ((i=1; i<=container_count; i++))
@ -63,7 +63,7 @@ do
mkdir -p "$storage_path" mkdir -p "$storage_path"
# 运行容器并设置重启策略为always # 运行容器并设置重启策略为always
container_id=$(docker run -d --restart always -v "$storage_path:/root/.titanedge/storage" --name "titan$i" --net=host nezha123/titan-edge:1.6) container_id=$(docker run -d --restart always -v "$storage_path:/root/.titanedge/storage" --name "titan$i" --net=host nezha123/titan-edge:1.6_amd64)
echo "节点 titan$i 已经启动 容器ID $container_id" echo "节点 titan$i 已经启动 容器ID $container_id"