Дерево страниц

Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

can be helpful when installing Docker. Ensure that Docker is configured to start on boot; in many cases it may not be. Depending on the operating system used, you may be able to enable the docker service with:

Блок кода
# systemctl enable docker

Ensure that Docker is up and running:

Блок кода
# service docker start

The installation process will fail without these dependencies.

CentOS 7
Блок кода
$ sudo yum install gcc libffi-devel python-devel openssl-devel epel-release

Once EPEL is configured, run:

Блок кода
$ sudo yum install python-pip
Debian 8 / Ubuntu LTS
Блок кода
$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev python-setuptools

...