Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Make documented install safer for docker-ce users #454

Merged
merged 1 commit into from
Sep 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,17 @@ Install them on Ubuntu/CentOS like this:
Ubuntu:

```bash
apt-get update && apt-get install -y --no-install-recommends containerd dmsetup openssh-client git binutils
apt-get update && apt-get install -y --no-install-recommends dmsetup openssh-client git binutils
which containerd || apt-get install -y --no-install-recommends containerd
# Install containerd if it's not present -- prevents breaking docker-ce installations
```

CentOS:

```bash
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install -y containerd.io e2fsprogs openssh-clients git
yum install -y e2fsprogs openssh-clients git
which containerd || ( yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && yum install -y containerd.io )
# Install containerd if it's not present
```

### CNI Plugins
Expand Down