国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

docker批量啟動關(guān)閉所有容器的操作

瀏覽:7日期:2024-10-29 18:38:20

docker中

啟動所有的容器命令

docker start $(docker ps -a | awk ’{ print $1}’ | tail -n +2)

docker中

關(guān)閉所有的容器命令

docker stop $(docker ps -a | awk ’{ print $1}’ | tail -n +2)

補(bǔ)充:shell批量啟動和刪除docker容器,基于docker toolbox

停止容器

stop.sh#!/bin/bashcontainerIDs='8f78b7e6995b beeae59c6f41 5305c3db3670 bffc551a6b96 61f0fc8b1dc4 8e85a3b7bfe3 d15c4d2dc546 2a3c4eb14584 5e98077acc3a 13bac087b83d'statusLived='live'statusdead='Dead'notExistContainer='None'retryCount=3function GetContainerStatus(){ containerExist=$(docker ps -a | grep -i $1 | wc -l ) if [ ${containerExist} -gt 0 ] then pid=$(docker stats --format '{{.PIDs}}' --no-stream $1 ) if [ '${pid}' != '0' ] then echo '${statusLived}' else echo '${statusdead}' fi else echo '${notExistContainer}' fi}function StopContainer(){ docker stop $1}for containerID in ${containerIDs} do for ((i=1;i<=${retryCount};i++)) do status=$(GetContainerStatus ${containerID} ) echo 'Container ${containerID} status is ${status}' if [ '${status}' == ${statusdead} ] then echo 'Container ${containerID} already stopped' break fi if [ '${status}' == ${notExistContainer} ] then echo 'Container ${containerID} not existed' break fi if [ '${status}' == ${statusLived} ] then echo 'Container ${containerID} is lived ,stop container' StopContainer ${containerID} verifyStatus=$(GetContainerStatus ${containerID} ) if [ '${verifyStatus}' == ${statusdead} ] then echo 'stop container ${containerID} success ' break else echo '${i} retry stop container' StopContainer ${containerID} fi fi donedone

說明:containerIDs里面是你已經(jīng)建好的,docker容器這里為nginx

docker批量啟動關(guān)閉所有容器的操作

把stop.sh放在d:/nginx下面。

docker批量啟動關(guān)閉所有容器的操作

docker批量啟動關(guān)閉所有容器的操作

過程稍微慢了點(diǎn),耐心等待。

docker批量啟動關(guān)閉所有容器的操作

停止容器成功。

啟動容器

#!/bin/bashcontainerIDs='8f78b7e6995b beeae59c6f41 5305c3db3670 bffc551a6b96 61f0fc8b1dc4 8e85a3b7bfe3 d15c4d2dc546 2a3c4eb14584 5e98077acc3a 13bac087b83d'statusLived='live'statusdead='Dead'notExistContainer='None'retryCount=3function GetContainerStatus(){ containerExist=$(docker ps -a | grep -i $1 | wc -l ) if [ ${containerExist} -gt 0 ] then pid=$(docker stats --format '{{.PIDs}}' --no-stream $1 ) if [ '${pid}' != '0' ] then echo '${statusLived}' else echo '${statusdead}' fi else echo '${notExistContainer}' fi}function StartContainer(){ docker restart $1}for containerID in ${containerIDs} do for((i=1;i<=${retryCount};i++)) do status=$(GetContainerStatus ${containerID} ) echo 'Container ${containerID} status is ${status}' if [ '${status}' == ${statusLived} ] then echo 'Container ${containerID} already running' break fi if [ '${status}' == ${notExistContainer} ] then echo 'Container ${containerID} not existed' break fi if [ '${status}' == ${statusdead} ] then echo 'Container ${containerID} stopped ,start container' StartContainer ${containerID} verifyStatus=$(GetContainerStatus ${containerID} ) if [ '${verifyStatus}' == ${statusLived} ] then echo 'start container ${containerID} success ' break else echo '${i} retry start container' StartContainer ${containerID} fi fi donedone

docker批量啟動關(guān)閉所有容器的操作

docker批量啟動關(guān)閉所有容器的操作

docker批量啟動關(guān)閉所有容器的操作

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。如有錯誤或未考慮完全的地方,望不吝賜教。

標(biāo)簽: Docker
相關(guān)文章:
主站蜘蛛池模板: 开鲁县| 昭觉县| 方城县| 开鲁县| 西藏| 锦州市| 宣城市| 雅江县| 巴东县| 宁蒗| 宁陕县| 呼伦贝尔市| 白城市| 铁岭县| 青龙| 和林格尔县| 平远县| 云霄县| 交城县| 田东县| 河北区| 天长市| 黄龙县| 平罗县| 辉南县| 侯马市| 乐昌市| 津市市| 同仁县| 临夏市| 白河县| 黄山市| 新乡市| 鄂尔多斯市| 福建省| 苗栗市| 鄢陵县| 英德市| 苏尼特右旗| 赫章县| 涟水县|