Docker Tutorial Linux For Beginners | How To Install and Use Docker on Ubuntu 18.04

Опубликовано: 30 Март 2025
на канале: Explained Easy
58
3

Docker Tutorial Linux For Beginners | How To Install and Use Docker on Ubuntu 18.04

In this video you will learn how to install and use docker, in this tutorial we use ubuntu 18.04, but the process is similar for other Linux distribution.

00:00:00 - Intro
0:00:55 - Prerequisites
0:01:09 - Step 1 — Installing Docker
0:06:12 - Step 2 — Executing the Docker Command Without Sudo (Optional)
0:07:56 - Step 3 — Using the Docker Command
0:09:08 - Step 4 — Working with Docker Images
0:13:02 - Step 5 — Running a Docker Container
0:15:40 - Step 6 — Managing Docker Containers
0:18:50 - Step 7 — Committing Changes in a Container to a Docker Image
0:22:12 - Step 8 — Pushing Docker Images to a Docker Repository
0:24:37 - Conclusion

Commands:

sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce
sudo apt install docker-ce
sudo systemctl status docker
docker
docker docker-subcommand --help
docker info
docker run hello-world
docker search ubuntu
docker pull ubuntu
docker images
docker run -it ubuntu
docker ps
docker ps -a
docker ps -l
docker images

#DockerTutorial #DockerForBeginners #HowToInstallDocker