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.
This commit is contained in:
Eiichi Kitagawa 2018-11-29 12:31:46 -08:00 committed by GitHub
parent d79dc1d84f
commit 78d626d551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.