Add Gerrit install for Fedora and Docker

Include in Gerrit's README.md the instructions on how
to install and run on Fedora and with Docker pre-built
images.

Change-Id: I34970d617475cd6c6294d3da2097e3d809f1e8f4
This commit is contained in:
Luca Milanesio
2016-10-27 08:27:54 +01:00
parent 38487b5883
commit 1c16099f03

View File

@@ -71,5 +71,21 @@ On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
## Use pre-built Gerrit images on Docker
Docker images of Gerrit are available on [DockerHub](https://hub.docker.com/u/gerritforge/)
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
_NOTE: release is optional. Last released package of the version is installed if the release
number is omitted._