Docker simple tutorial (1) installation

Docker simple tutorial (1) installation

insert image description here
insert image description here

Next, start to learn docker. You should like her. She solves the tedious process of setting up the environment and lets us focus on the business instead of a lot of meaningless configurations, configurations, configurations.

insert image description here
Windows installation and mac installation are very simple, go directly to the official website to download the installation program, click to install, we will focus on the installation of linux here.
insert image description here

1: Windows installation and mac installation

==========》Installer download address

insert image description here

2: Linux installation

Installation method 1: use api-get

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

If you are reminded that apt-get is not found, use package installation

Installation method 2: package installation

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

insert image description here

3: The installation is successful

You have successfully installed, congratulations! ! !

Let's check the docker version:

docker --version

(If you downloaded the desktop version of docker, remember to run the application)

Please add a picture description

insert image description here

4: The next article introduces the basic implementation, and realizes a simple server in 5 minutes.

Guess you like

Origin blog.csdn.net/qq_41974199/article/details/130302657