How to Install Docker Desktop on Ubuntu 24.04

Channel:
Subscribers:
13,900
Published on ● Video Link: https://www.youtube.com/watch?v=geNvWXac2Mg



Duration: 0:00
695 views
18


Welcome to our channel! In this video, we'll walk you through the process of installing Docker Desktop on Ubuntu 24.04, the latest and greatest from the Ubuntu family. Docker Desktop is a powerful tool for managing containerized applications, and with Ubuntu 24.04's support, you can get up and running in no time.

Commands
sudo apt install apt-transport-https ca-certificates curl GnuPG

curl -fsSL https://download.docker.com/linux/deb... | sudo gpg --dearmor -o /usr/share/keyrings/docker.gpg

echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu noble stable" | sudo tee /etc/apt/sources.list.d/docker.list /dev/null (greater than removed check and add it)

echo 'kernel.apparmor_restrict_unprivileged_userns = 0' | sudo tee /etc/sysctl.d/20-apparmor-donotrestrict.conf