Независимо от операционной системы, важно установить необходимые пакеты для быстрой установки, после чего установщик Docker самостоятельно установит все необходимое.

 

Если у вас Debian 12, Ubuntu 22.04 или другие версии данных ОС на основе Debian:

❗️❗️Вводите команды по одному, для избежания проблем в процессе обновления❗️❗️

 

Сначала обновите список пакетов и установите обновления для существующих пакетов:

apt update -y
apt upgrade -y

Установите необходимые инструменты, такие как wget, curl и sudo:

apt install wget curl sudo -y

Установите Docker

curl -sSL https://get.docker.com/ | CHANNEL=stable bash

Активируйте Docker

systemctl enable --now docker

 

Если у вас CentOS 8/9, AlmaLinux 9.2 или другие ОС этого семейства Red Hat

❗️❗️Вводите команды по одному, для избежания проблем в процессе обновления❗️❗️

yum update -y
yum upgrade -y
yum install epel-release -y
yum update -y

Установите требуемые пакеты

yum install wget curl sudo -y

Установите Docker

curl -sSL https://get.docker.com/ | CHANNEL=stable bash

Активируйте Docker

systemctl enable --now docker

Запустим тестовый контейнер

docker run hello-world

Если увидите это:

Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/

For more examples and ideas, visit:
https://docs.docker.com/get-started/

Это означает что Docker был успешно установлен и работает.

❗️❗️ Промо-код (скидка 15%): PROMO15 ❗️❗️

Вводите во время заказа услуги на сайте: https://hosting-vds.com/

Помог ли вам данный ответ? 1 Пользователи считают это полезным (1 голосов)