Added a new remove unofficial docker step (#1468)

* Added a new remove unofficial docker step
This commit is contained in:
tradfor 2017-02-06 17:01:44 -08:00 committed by Misty Stanley-Jones
parent 76461f517e
commit 4d01901e7c
4 changed files with 28 additions and 0 deletions

View File

@ -26,6 +26,13 @@ version of Docker, remove it using the following command:
$ sudo yum -y remove docker
```
You may also have to remove the package `docker-selinux` which conflicts with
the official `docker-engine` package. Remove it with the following command:
```bash
$ sudo yum -y remove docker-selinux
```
The contents of `/var/lib/docker` are not removed, so any images, containers,
or volumes you created using the older version of Docker are preserved.

View File

@ -29,6 +29,13 @@ of Docker, remove it using the following command:
$ sudo dnf -y remove docker
```
You may also have to remove the package `docker-selinux` which conflicts with the
official `docker-engine` package. Remove it with the following command:
```bash
$ sudo dnf -y remove docker-selinux
```
The contents of `/var/lib/docker` are not removed, so any images, containers,
or volumes you created using the older version of Docker are preserved.

View File

@ -31,6 +31,13 @@ remove it using the following command:
$ sudo yum -y remove docker
```
You may also have to remove the package `docker-engine-selinux` which conflicts with
the official `docker-engine` package. Remove it with the following command:
```bash
$ sudo yum -y remove docker-engine-selinux
```
The contents of `/var/lib/docker` are not removed, so any images, containers,
or volumes you created using the older version of Docker are preserved.

View File

@ -27,6 +27,13 @@ version of Docker, remove it using the following command:
$ sudo yum -y remove docker
```
You may also have to remove the package `docker-selinux` which conflicts with
the official `docker-engine` package. Remove it with the following command:
```bash
$ sudo yum -y remove docker-selinux
```
The contents of `/var/lib/docker` are not removed, so any images, containers,
or volumes you created using the older version of Docker are preserved.