Your cart is currently empty!
How to Install Docker Desktop for Linux on Ubuntu 24.04
In this video, I will show you 4 options how to install Docker on Ubuntu.
Chapters:
0:00 Intro
0:23 Install docker on ubuntu using default repositories
2:00 Install docker from official repository
4:01 Install docker engine – community from a convenience script
4:43 Install docker testing version
Commands:
Option 1: Install Docker on Ubuntu Using Default Repositories
sudo apt-get update
sudo apt-get remove docker docker-engine docker.io
sudo apt install docker.io
Option 2: Install Docker from Official Repository
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
sudo add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable“
sudo apt-get update
sudo apt-get install docker-ce
Option 3: Install Docker Engine from Community from a Convenience Script
sh get-docker.sh
Option 4: Install Docker Testing Version from Community from a Convenience Script
sh test-docker.sh
What you’ll learn:
1. Install Docker on Ubuntu Using Default Repositories
a. How to Update Software Repositories
b. How to install Docker Engine on Ubuntu
c. How to update the local database of software
d. How to Uninstall Old Versions of Docker
e. How to Install Docker on Ubuntu
f. How to Start and Automate Docker
2. Install Docker from Official Repository
a. How to Update Local Database
b. How to Download Dependencies
c. How to allow your operating system to access the Docker repositories over HTTPS
d. How to allow the package manager to transfer files and data over https
e. How to allow the system (and web browser) to check security certificates
f. How to Add Docker’s GPG Key
g. How to ensure that the software you’re installing is authentic
h. How to Install the Docker Repository
i. How to Update the repositories you just added
j. How to Install the Latest Version of Docker
3. Install Docker Engine – Community from a Convenience Script
a. How to install edge or testing versions of Docker
b. How to use convenience scripts
4. Install Docker Testing Version from a Convenience Script
5. How to install Docker Engine on Ubuntu
6. Install Docker on Ubuntu 24.04
Song: Dennis Kumar – Road Trips (Vlog No Copyright Music)
Music provided by Vlog No Copyright Music.
Video Link: https://youtu.be/NSW0xLPUD84
#computereverywhere #howto #install #docker #engine #ubuntu