From d89d199cdf8f734937c960a851ccc1db1299e3f7 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 22 May 2018 09:59:20 +0100 Subject: [PATCH] docs: Fix CentOS install guide The CentOS install guide was referencing an invalid package (`dnf-plugins-core`) so update for the yum equivalent. Fixes #329. Signed-off-by: James O. D. Hunt --- install/centos-installation-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/centos-installation-guide.md b/install/centos-installation-guide.md index 8e1c0f64a6..38a7edb050 100644 --- a/install/centos-installation-guide.md +++ b/install/centos-installation-guide.md @@ -6,7 +6,7 @@ This step is only required in case Docker is not installed on the system. 1. Install the latest version of Docker with the following commands: ```bash -$ sudo yum -y install dnf-plugins-core +$ sudo yum -y install yum-utils $ sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo $ sudo yum -y install docker-ce ```