From a82373509d36bd0adb3d6abd5343ed011ac439a9 Mon Sep 17 00:00:00 2001 From: Misty Stanley-Jones Date: Wed, 2 Aug 2017 10:49:54 -0700 Subject: [PATCH] Refer to the 'test' repo, not 'testing' (#4077) --- engine/installation/linux/docker-ce/centos.md | 10 +++++----- engine/installation/linux/docker-ce/debian.md | 6 +++--- engine/installation/linux/docker-ce/fedora.md | 10 +++++----- engine/installation/linux/docker-ce/ubuntu.md | 10 +++++----- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/engine/installation/linux/docker-ce/centos.md b/engine/installation/linux/docker-ce/centos.md index ae3c73c50d..379f07d67a 100644 --- a/engine/installation/linux/docker-ce/centos.md +++ b/engine/installation/linux/docker-ce/centos.md @@ -81,7 +81,7 @@ from the repository. 2. Use the following command to set up the **stable** repository. You always need the **stable** repository, even if you want to install builds from the - **edge** or **testing** repositories as well. + **edge** or **test** repositories as well. ```bash $ sudo yum-config-manager \ @@ -89,7 +89,7 @@ from the repository. {{ download-url-base }}/docker-ce.repo ``` -3. **Optional**: Enable the **edge** and **testing** repositories. These +3. **Optional**: Enable the **edge** and **test** repositories. These repositories are included in the `docker.repo` file above but are disabled by default. You can enable them alongside the stable repository. @@ -98,10 +98,10 @@ from the repository. ``` ```bash - $ sudo yum-config-manager --enable docker-ce-testing + $ sudo yum-config-manager --enable docker-ce-test ``` - You can disable the **edge** or **testing** repository by running the + You can disable the **edge** or **test** repository by running the `yum-config-manager` command with the `--disable` flag. To re-enable it, use the `--enable` flag. The following command disables the **edge** repository. @@ -110,7 +110,7 @@ from the repository. ``` > **Note**: Starting with Docker 17.06, stable releases are also pushed to - > the **edge** and **testing** repositories. + > the **edge** and **test** repositories. [Learn about **stable** and **edge** builds](/engine/installation/). diff --git a/engine/installation/linux/docker-ce/debian.md b/engine/installation/linux/docker-ce/debian.md index b6c45c4a59..0b383c747b 100644 --- a/engine/installation/linux/docker-ce/debian.md +++ b/engine/installation/linux/docker-ce/debian.md @@ -137,8 +137,8 @@ from the repository. 4. Use the following command to set up the **stable** repository. You always need the **stable** repository, even if you want to install builds from the - **edge** or **testing** repositories as well. To add the **edge** or - **testing** repository, add the word `edge` or `testing` (or both) after the + **edge** or **test** repositories as well. To add the **edge** or + **test** repository, add the word `edge` or `test` (or both) after the word `stable` in the commands below. > **Note**: The `lsb_release -cs` sub-command below returns the name of your @@ -176,7 +176,7 @@ from the repository. Save and exit the file. > **Note**: Starting with Docker 17.06, stable releases are also pushed to - > the **edge** and **testing** repositories. + > the **edge** and **test** repositories. [Learn about **stable** and **edge** channels](/engine/installation/). diff --git a/engine/installation/linux/docker-ce/fedora.md b/engine/installation/linux/docker-ce/fedora.md index 2a8fe9dde5..432b3a17a0 100644 --- a/engine/installation/linux/docker-ce/fedora.md +++ b/engine/installation/linux/docker-ce/fedora.md @@ -82,7 +82,7 @@ from the repository. 2. Use the following command to set up the **stable** repository. You always need the **stable** repository, even if you want to install builds from the - **edge** or **testing** repositories as well. + **edge** or **test** repositories as well. ```bash $ sudo dnf config-manager \ @@ -90,7 +90,7 @@ from the repository. {{ download-url-base }}/docker-ce.repo ``` -3. **Optional**: Enable the **edge** and **testing** repositories. These +3. **Optional**: Enable the **edge** and **test** repositories. These repositories are included in the `docker.repo` file above but are disabled by default. You can enable them alongside the stable repository. @@ -99,10 +99,10 @@ from the repository. ``` ```bash - $ sudo dnf config-manager --set-enabled docker-ce-testing + $ sudo dnf config-manager --set-enabled docker-ce-test ``` - You can disable the **edge** or **testing** repository by running the + You can disable the **edge** or **test** repository by running the `dnf config-manager` command with the `--disable` flag. To re-enable it, use the `--enable` flag. The following command disables the **edge** repository. @@ -111,7 +111,7 @@ from the repository. ``` > **Note**: Starting with Docker 17.06, stable releases are also pushed to - > the **edge** and **testing** repositories. + > the **edge** and **test** repositories. [Learn about **stable** and **edge** channels](/engine/installation/). diff --git a/engine/installation/linux/docker-ce/ubuntu.md b/engine/installation/linux/docker-ce/ubuntu.md index 1e5331a8bb..885b3ffba4 100644 --- a/engine/installation/linux/docker-ce/ubuntu.md +++ b/engine/installation/linux/docker-ce/ubuntu.md @@ -132,8 +132,8 @@ the repository. 4. Use the following command to set up the **stable** repository. You always need the **stable** repository, even if you want to install builds from the - **edge** or **testing** repositories as well. To add the **edge** or - **testing** repository, add the word `edge` or `testing` (or both) after the + **edge** or **test** repositories as well. To add the **edge** or + **test** repository, add the word `edge` or `test` (or both) after the word `stable` in the commands below. > **Note**: The `lsb_release -cs` sub-command below returns the name of your @@ -170,7 +170,7 @@ the repository. ``` > **Note**: Starting with Docker 17.06, stable releases are also pushed to - > the **edge** and **testing** repositories. + > the **edge** and **test** repositories. [Learn about **stable** and **edge** channels](/engine/installation/). @@ -227,9 +227,9 @@ the repository. ```bash $ sudo docker run hello-world ``` - + or if you run on armhf: - +    ```bash $ sudo docker run armhf/hello-world ```