Unable to issue 'docker run' after Ubuntu release upgrade to Impish

Have been using Docker for months successfully on Ubuntu Hirsute 5.11.0-1021
Yesterday I did a ‘do-release-upgrade’ and upgraded to Ubuntu Impish 5.13.0-1009
Now Docker refuses to run any of my containers! Rebooting my server didn’t help.

All I get is the following error.

ubuntu@master:/boot$ docker run hello-world
docker: Error response from daemon: failed to create endpoint wizardly_proskuriakova on network bridge: failed to add the host (veth8ad6ab9) <=> sandbox (veth70db1a9) pair interfaces: operation not supported.
ERRO[0000] error waiting for container: context canceled

I have tried to lookup what this error is all about in order to find a solution but I am out of options as I didn’t find anything helpful with Google.

ubuntu@master:/boot$ docker version
Client:
 Version:           20.10.7
 API version:       1.41
 Go version:        go1.13.8
 Git commit:        20.10.7-0ubuntu5.1
 Built:             Mon Nov  1 00:34:28 2021
 OS/Arch:           linux/arm64
 Context:           default
 Experimental:      true

Server:
 Engine:
  Version:          20.10.7
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.13.8
  Git commit:       20.10.7-0ubuntu5.1
  Built:            Thu Oct 21 23:58:58 2021
  OS/Arch:          linux/arm64
  Experimental:     false
 containerd:
  Version:          1.5.5-0ubuntu3
  GitCommit:
 runc:
  Version:          1.0.1-0ubuntu2
  GitCommit:
 docker-init:
  Version:          0.19.0
  GitCommit:
ubuntu@master:/boot$ docker info
Client:
 Context:    default
 Debug Mode: false

Server:
 Containers: 13
  Running: 0
  Paused: 0
  Stopped: 13
 Images: 10
 Server Version: 20.10.7
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: systemd
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version:
 runc version:
 init version:
 Security Options:
  apparmor
  seccomp
   Profile: default
  cgroupns
 Kernel Version: 5.13.0-1009-raspi
 Operating System: Ubuntu 21.10
 OSType: linux
 Architecture: aarch64
 CPUs: 4
 Total Memory: 3.701GiB
 Name: master
 ID: WYO5:L25W:L3X4:6ADW:W2T6:VJDI:XCC6:VWHQ:2CKN:JRSM:3RNO:NR2K
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

What is going on here and how can I solve this??
Thanks, Rene.

Hi

Can you try and update to docker 20.10.10 or later?
there is some Impish related stuff in it.

FInally I found it…
Apparently as of Impish release for Raspberry Pi we need to run:

sudo apt install linux-modules-extra-raspi

Please see: Support for Ubuntu 21.10 Impish arm64 (on raspberry-pi kernels) · Issue #1320 · docker/for-linux · GitHub
Thanks!

1 Like

Thanks for your help.

1 Like