docker 强制关闭异常容器

#Get the container id
docker ps

#Get the containerd-shim process id
sudo ps awx | grep containerd-shim | grep <<container_id>> | awk '{print $1}'

#kill the process id
sudo kill -9 <<process_id>>

I was then able to rm --force the container and recreate it. That did however lead to a corrupted db within the app (I’m not sure if the db was a cause of the docker errors or a result of killing the process). I restored a backup config and haven’t run into the issue as of yet – 12+ hours, where I used to reliably get the error in ~ 2 hours.

Leaving this open until I can test more thoroughly and for anyone else with the same issue. Devs feel free to close if you don’t find this relevant.

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注