Added steps to install docker for all distros

* Since we install docker-compose but docker is not installed,
  It gives error to install and start docker service. The above
  patch fixes the same and added step for installing and starting
  docker services.

Change-Id: Ia2c8072693e5c4b9849ed4103b037bd642cd6ffe
This commit is contained in:
Chandan Kumar 2018-10-11 23:02:05 +05:30
parent 6cf55978f8
commit 24bccc4122
1 changed files with 14 additions and 3 deletions

View File

@ -26,13 +26,24 @@ Before you start, ensure that some needed packages are installed.
.. code-block:: shell
# Debian / Ubuntu:
# Red Hat / Fedora / CentOS:
sudo yum install docker docker-compose git git-review
# OpenSuse:
sudo zypper install docker docker-compose git git-review
# Ubuntu / Debian:
sudo apt-get install docker-compose git git-review
# Red Hat / Fedora / SUSE:
# Start and Enable the docker service on Fedora / CentOS
# Red Hat / OpenSuse:
sudo systemctl enable docker.service
sudo systemctl start docker.service
sudo yum install docker-compose git git-review
Clone the Zuul repository: