Встановлення Docker дуже просте і зрозуміле практично на будь-якій ОС ✅

Не має значення, яка у вас ОС, важливо загрузити необхідні пакети для швидкого встановлення, після чого інсталятор Docker поставить все необхідне самостійно.

Якщо у вас Debian 12, Ubuntu 22.04 або подібні сімейства ОС:
❗️❗️ Пишіть по 1 команді за раз, не копіюйте всі команди одразу ❗️❗️

apt update -y
apt upgrade -y
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 та подібні ОС сімейства
❗️❗️ Пишіть по 1 команді за раз, не копіюйте всі команди одразу ❗️❗️

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

 

Промокод: KNOWLEDGE_BASE

Оберіть тарифний план: ➡️ https://sebekvps.com/

 

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

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/

Після цього докер успішно встановлено і він працює.

Промокод: KNOWLEDGE_BASE

Оберіть тарифний план: ➡️ https://sebekvps.com/

Was this answer helpful? 0 Users Found This Useful (0 Votes)