定时检查自动重启容器脚本
Posted petersonx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时检查自动重启容器脚本相关的知识,希望对你有一定的参考价值。
vim restart.sh
#!/bin/bash # set container ID ID=4402f2ddc9dd # check container running status docker ps -a |grep -i exited 2>&1 >/dev/null # restart container if [ $? -eq 0 ];then docker restart $ID 2>&1 >/dev/null if [ $? -eq 0 ];then echo -e "