Skip to content

Instantly share code, notes, and snippets.

@andronex
Created July 5, 2021 20:41
Show Gist options
  • Save andronex/520c66380b538b86313866b974866e0f to your computer and use it in GitHub Desktop.
Save andronex/520c66380b538b86313866b974866e0f to your computer and use it in GitHub Desktop.
Перезапуск MySQL в докере при падении
#!/bin/bash
a=`ps ax|grep 3310|grep -v grep|wc -l`
echo $a
if (( "$a" < 1 )); then
/usr/bin/docker start 21ab17aeab7b
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment