Browse Source

Merge pull request #3176 from lsm5/rhel-docs

Rhel docs
Andy Rothfusz 11 years ago
parent
commit
d3292078dc
1 changed files with 20 additions and 15 deletions
  1. 20 15
      docs/sources/installation/rhel.rst

+ 20 - 15
docs/sources/installation/rhel.rst

@@ -1,40 +1,45 @@
-:title: Requirements and Installation on Red Hat Enterprise Linux / CentOS
+:title: Requirements and Installation on Red Hat Enterprise Linux
 :description: Please note this project is currently under heavy development. It should not be used in production.
 :keywords: Docker, Docker documentation, requirements, linux, rhel, centos
 
 .. _rhel:
 
-Red Hat Enterprise Linux / CentOS
-=================================
+Red Hat Enterprise Linux 
+========================
 
 .. include:: install_header.inc
 
 .. include:: install_unofficial.inc
 
-Docker is available for **RHEL/CentOS 6**.
+Docker is available for **RHEL** on EPEL. These instructions should work for
+both RHEL and CentOS. They will likely work for other binary compatible EL6
+distributions as well, but they haven't been tested.
 
-Please note that this package is part of a `Extra Packages for Enterprise Linux (EPEL)`_, a community effort to create and maintain additional packages for RHEL distribution.
+Please note that this package is part of `Extra Packages for Enterprise
+Linux (EPEL)`_, a community effort to create and maintain additional packages
+for the RHEL distribution.
 
-Please note that due to the current Docker limitations Docker is able to run only on the **64 bit** architecture.
+Also note that due to the current Docker limitations, Docker is able to run
+only on the **64 bit** architecture.
 
 Installation
 ------------
 
-1. Firstly, let's make sure our RHEL host is up-to-date.
+1. Firstly, you need to install the EPEL repository. Please follow the `EPEL installation instructions`_.
 
-.. code-block:: bash
+2. Next, let's install the ``docker-io`` package which will install Docker on our host.
 
-    sudo yum -y upgrade
+.. code-block:: bash
 
-2. Next you need to install the EPEL repository. Please follow the `EPEL installation instructions`_.
+   sudo yum -y install docker-io
 
-3. Next let's install the ``docker-io`` package which will install Docker on our host.
+To keep docker up to date:
 
 .. code-block:: bash
 
-   sudo yum -y install docker-io
+   sudo yum -y update docker-io
 
-4. Now it's installed lets start the Docker daemon.
+3. Now that it's installed, lets start the Docker daemon.
 
 .. code-block:: bash
 
@@ -46,11 +51,11 @@ If we want Docker to start at boot we should also:
 
    sudo chkconfig docker on
 
-5. Now let's verify that Docker is working.
+4. Now let's verify that Docker is working.
 
 .. code-block:: bash
 
-   sudo docker run -i -t ubuntu /bin/bash
+   sudo docker run -i -t mattdm/fedora /bin/bash
 
 **Done!**, now continue with the :ref:`hello_world` example.