Failed to connect to containerd: exec: “docker-containerd“: executable file not found in $PATH

报错详情

Failed to connect to containerd: exec: “docker-containerd”: executable file not found in $PATH
Error: docker not running

在这里插入图片描述

系统版本是:
Description: CentOS Linux release 7.8.2003 (Core)
Release: 7.8.2003

解决方式

打印$PATH的值

echo $PATH

在环境变量中添加参数

export PATH="$PATH:/usr/local/bin/"

/usr/local/bin/是我的docker路径

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_44534541/article/details/131124631