1 Star 0 Fork 3

Byron/docker_hadoop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.sh 336 Bytes
一键复制 编辑 原始数据 按行查看 历史
Byron 提交于 2015-10-22 20:48 . fix bug
#!/bin/bash
# run num slave containers
num=$1
# the defaut node number is 3
if [ $# = 0 ]
then
num=3
fi
# delete master containers
echo "stop begin..."
sudo docker rm -f master &> /dev/null
# delete slave containers
i=1
while [ $i -lt $num ]
do
sudo docker rm -f slave$i &> /dev/null
((i++))
done
echo "stop done..."
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaolunlun/docker_hadoop.git
git@gitee.com:yaolunlun/docker_hadoop.git
yaolunlun
docker_hadoop
docker_hadoop
master

搜索帮助