Docker Installation on Ubuntu Desktop: Complete Guide #ubuntu #docker #dockercontainer #softbikas
Welcome to my channel! In this tutorial, I’ll walk you through the process of installing Docker on Ubuntu. Docker is a powerful platform that allows you to automate the deployment of applications inside lightweight, portable containers. Whether you’re a developer, system administrator, or just curious about Docker, this guide will help you get started.
In this video, you will learn:
What Docker is and why it’s useful
How to install Docker on Ubuntu
Basic Docker commands to get you started
1.Run the following command to uninstall all conflicting packages:
$ for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
2. Install using the apt repository
2.1.Set up Docker’s apt repository.
# Add Docker’s official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
2.2: Add the repository to Apt sources:
echo
“deb [arch=$(dpkg –print-architecture) signed-by=/etc/apt/keyrings/docker.asc]
$(. /etc/os-release && echo “$VERSION_CODENAME”) stable” |
sudo tee /etc/apt/sources.list.d/docker.list /dev/null
sudo apt-get update
3.To install the latest version, run:
$ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
==============================
🎥 Docker Installation on Windows 11 home || WSL || Docker on Windows 10
🎥 Docker related playlist
🎥 Master Bind DNS on Webmin: Step-by-Step Guide for Linux, || Red Hat & Ubuntu ||
🎥 Master Oracle 19c RAC Setup With Shared Disk Storage ASM And DNS Tricks
🎥 || FREE || VMware Workstation Pro 17 and Fusion Now Free for Personal Use!
🎥 Oracle 12c Multitenant Database setup
🎥 OEL 8 VM setup:
🎥 Oracle 21c Single Instance:
🎥 Silent Oracle installation
🎥 Oracle 19c ASM:
🎥 Oracle 12c tutorial:
🎥 Windows 11 Installation on VMWare:
🎥 Windows 11 installation on Virtualbox
🎥 Other content on this channel:
==============================
Contact:
Facebook:
Mail to: softbikas@gmail.com
Timestamps:
00:00 Introduction
1:05 Installing docker
5:46 Docker Post validation
9:30 Conclusion
#Ubuntu #Docker #dockeronubuntu #Ubuntu24.04 #dockerwindows #VirtualMachine #Linux
#oracledatabase
Please like, share, and subscribe if you found this video helpful. Don’t forget to hit the bell icon for notifications on our future videos. Leave a comment if you have any questions or suggestions. Thank you for watching!
[ad_2]
source