docker 中出现“对接口:不支持操作”错误

docker 中出现“对接口:不支持操作”错误

我为 Raspberry PI 安装了 Ubuntu 21.10 Server,然后安装了 Docker 并使用 docker-compose 启动了一些容器,但我注意到这不再起作用了。以前我有 Ubuntu 20.04 LST,一切运行正常(除了缺少 NVME 启动支持,在 21.10 中添加)。

Error response from daemon: failed to create endpoint fpm-redis-1 on network fpm_default: failed to add the host (veth4f16537) <=> sandbox (veth3eb890a) pair interfaces: operation not supported

经过几个小时的努力寻找解决方案后,该问题似乎与内核有关。

答案1

根据21.10 发行说明,这应该有帮助:

sudo apt install linux-modules-extra-raspi

linux-modules-raspi为了减少 initramfs 的大小,已将各种内核模块从软件包中移除。这导致几个应用程序(最值得注意的是Docker,错误 1947601) 因缺少内核模块而失败。要解决此问题:

sudo apt install linux-modules-extra-raspi

相关内容