I've installed Docker and Docker Desktop on my Ubuntu 20.04 VM using this guide:
What I've tried
I've restarted docker with
sudo service docker stop / start
I've clicked restart with the Docker Desktop dropdown menu on the top right of my Ubuntu Desktop.
I've added my user to the
docker
group.
What steps can I take to debug this? Is there anything obvious I'm missing?
Thanks!
CodePudding user response:
I had the same problem over debian 11 and Docker desktop 4.8.1
(!) If you are using linux inside a VM, verify virtualization support: Docker Desktop runs a VM that requires KVM support.
Docker desktop restart
Docker service status after reboot my computer
Full history:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo usermod -aG docker YOUR_USER
sudo apt install gnome-terminal
sudo apt install qemu-kvm libvirt-clients libvirt-daemon-system bridge-utils virtinst libvirt-daemon virt-manager -y
sudo usermod -aG kvm YOUR_USER
sudo apt autoremove
sudo apt install ./docker-desktop-4.8.1-amd64.deb
sudo systemctl disable docker.service
sudo systemctl disable docker.socket
Test VirtualBox VM - Ubuntu 20.04