mirror of https://github.com/docker/docs.git
Add the missing instruction to add the repo
This change is only affecting the RHEL 7/8 portion of the doc.
This commit is contained in:
parent
dcc29a413f
commit
7f62d13fce
|
@ -118,6 +118,15 @@ You only need to set up the repository once, after which you can install Docker
|
||||||
```bash
|
```bash
|
||||||
$ sudo yum-config-manager --enable rhui-rhel-7-server-rhui-extras-rpms
|
$ sudo yum-config-manager --enable rhui-rhel-7-server-rhui-extras-rpms
|
||||||
```
|
```
|
||||||
|
|
||||||
|
6. Add the Docker Engine - Enterprise **stable** repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ sudo -E yum-config-manager \
|
||||||
|
--add-repo \
|
||||||
|
"$DOCKERURL/{{ linux-dist-url-slug }}/docker-ee.repo"
|
||||||
|
```
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div id="RHEL_8" class="tab-pane fade" markdown="1">
|
<div id="RHEL_8" class="tab-pane fade" markdown="1">
|
||||||
1. Remove existing Docker repositories from `/etc/yum.repos.d/`:
|
1. Remove existing Docker repositories from `/etc/yum.repos.d/`:
|
||||||
|
@ -152,6 +161,15 @@ You only need to set up the repository once, after which you can install Docker
|
||||||
device-mapper-persistent-data \
|
device-mapper-persistent-data \
|
||||||
lvm2
|
lvm2
|
||||||
```
|
```
|
||||||
|
|
||||||
|
5. Add the Docker Engine - Enterprise **stable** repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ sudo -E yum-config-manager \
|
||||||
|
--add-repo \
|
||||||
|
"$DOCKERURL/{{ linux-dist-url-slug }}/docker-ee.repo"
|
||||||
|
```
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue