mirror of https://github.com/docker/docs.git
Added a new remove unofficial docker step (#1468)
* Added a new remove unofficial docker step
This commit is contained in:
parent
76461f517e
commit
4d01901e7c
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue