From 78d626d551cc2bd7d064e16cbf0a7068ef671319 Mon Sep 17 00:00:00 2001 From: Eiichi Kitagawa Date: Thu, 29 Nov 2018 12:31:46 -0800 Subject: [PATCH] Extra `.0` should be removed for Centos and RHEL false: sudo yum-config-manager --enable docker-ee-stable-18.09.09 correct: sudo yum-config-manager --enable docker-ee-stable-18.09 I bumped into this while setting up a test env on Centos. Did a quick test on RHEL, and I could see the same issue. --- _includes/ee-linux-install-reuse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/ee-linux-install-reuse.md b/_includes/ee-linux-install-reuse.md index 9f76211f25..3603135a98 100644 --- a/_includes/ee-linux-install-reuse.md +++ b/_includes/ee-linux-install-reuse.md @@ -172,7 +172,7 @@ You only need to set up the repository once, after which you can install Docker For example, if you want to install the 18.09 version run the following: ```bash - sudo yum-config-manager --enable docker-ee-stable-18.09.0 + sudo yum-config-manager --enable docker-ee-stable-18.09 ``` Docker is installed but not started. The `docker` group is created, but no users are added to the group.