码迷,mamicode.com
首页 > 其他好文 > 详细

定时检查自动重启容器脚本

时间:2019-12-14 15:33:01      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:star   ted   status   roo   success   led   gre   res   rest   

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 "\033[32m The Container ID=$ID restart successfully ! \033[0m"
        else
                echo -e "\033[31m The Container ID=$ID restart Failed !!!\033[0m"
        fi
else
        echo -e "\033[31m The Container ID=$ID is Running, No need to restart !\033[0m"
fi

crontab -u root -e
5 * * * * sh /data/nginx/restart.sh

定时检查自动重启容器脚本

标签:star   ted   status   roo   success   led   gre   res   rest   

原文地址:https://www.cnblogs.com/petersonx/p/12039104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!