Shell 命令启动Docker Container
Linux虚拟机重启后,都要手动启动多个Docker Container,着实麻烦,使用Shell命令可以减去这个麻烦。创建文件,添加可执行权限touch startcontiner.shchomd +x startcontainer.sh编写startcontainer.sh#!/bin/sh#chkconfig: 35 ...
·
Linux虚拟机重启后,都要手动启动多个Docker Container,着实麻烦,使用Shell命令可以减去这个麻烦。
- 创建文件,添加可执行权限
touch startcontiner.sh
chomd +x startcontainer.sh
- 编写startcontainer.sh
#!/bin/sh
#chkconfig: 35 90 80
#description: start docker container
containerNames="mysql redis rabbitmq mongo zookeeper"
# 根据名称启动Docker Contianers
function startContainer(){
sudo docker start $1
}
# 遍历containerNames
for containerName in ${containerNames}
do
echo "Container ${containerName} start"
startContainer ${containerName}
done
- 启动并测试
./startcontainer.sh
更多推荐
已为社区贡献6条内容
所有评论(0)