2. Docker in Linux Ubuntu 22.04 Installations
This a tutorial series on docker.
Links:
https://docs.docker.com/
install docker in ubuntu 22.04
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg –dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
Due to youtube wont allowed some special char text i advice to replace or google this code line below….
=====================================================================
echo deb archdpkg printarchitecture signedbyusrsharekeyringsdockerarchivekeyringgpg httpsdownloaddockercomlinuxubuntu lsbrelease cs stable sudo tee etcaptsourceslistddockerlist devnull
=====================================================================
sudo apt update
apt-cache policy docker-ce
Output of apt-cache policy docker-ce
docker-ce:
Installed: (none)
Candidate: 5:20.10.14~3-0~ubuntu-jammy
Version table:
5:20.10.14~3-0~ubuntu-jammy 500
500 https://download.docker.com/linux/ubuntu jammy/stable amd64 Packages
5:20.10.13~3-0~ubuntu-jammy 500
500 https://download.docker.com/linux/ubuntu jammy/stable amd64 Packages
sudo apt install docker-ce
sudo systemctl status docker
USER
sudo usermod -aG docker ${USER}
groups
Reboot
My Other Channel:
https://www.youtube.com/channel/UCGCxdq6PYTy5doi9763eTCQ
Buy me a coffee:
https://www.buymeacoffee.com/arboiscodemedia
Join my facebook group for more:
https://www.facebook.com/groups/52326754561224
ubuntu