mirror of https://github.com/docker/docs.git
Merge pull request #2054 from mstanleyjones/master
A couple quick fixes
This commit is contained in:
commit
9f8adaf6f0
|
@ -404,6 +404,10 @@ a.button.outline-btn {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.darkblue-btn {
|
||||
background-color: #0C5176;
|
||||
}
|
||||
|
||||
.outline-btn:hover,
|
||||
.primary-btn:hover,
|
||||
.secondary-btn:hover {
|
||||
|
@ -1758,11 +1762,11 @@ footer {
|
|||
|
||||
|
||||
/* Landscape */
|
||||
@media only screen
|
||||
and (min-device-width: 375px)
|
||||
and (max-device-width: 667px)
|
||||
@media only screen
|
||||
and (min-device-width: 375px)
|
||||
and (max-device-width: 667px)
|
||||
and (-webkit-min-device-pixel-ratio: 2)
|
||||
and (orientation: landscape) {
|
||||
and (orientation: landscape) {
|
||||
.nav-secondary,
|
||||
.nav-secondary-tabs.affix {
|
||||
height: 155px;
|
||||
|
|
|
@ -122,7 +122,7 @@ Repository set-up instructions are different for [Docker CE](#docker-ce) and
|
|||
[prerequisites](#prerequisites).
|
||||
|
||||
```bash
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockerurl'
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockersuburl'
|
||||
```
|
||||
|
||||
3. Install `yum-utils`, which provides the `yum-config-manager` utility:
|
||||
|
|
|
@ -79,12 +79,12 @@ the repository.
|
|||
|
||||
1. Remove any existing Docker repositories from `/etc/yum.repos.d/`.
|
||||
|
||||
2. Store your EE repository URL in `/etc/yum/vars/dockerurl`. Replace
|
||||
2. Store your EE repository URL in `/etc/yum/vars/dockersuburl`. Replace
|
||||
`<DOCKER-EE-URL>` with the URL you noted down in the
|
||||
[prerequisites](#prerequisites).
|
||||
|
||||
```bash
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockerurl'
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockersuburl'
|
||||
```
|
||||
|
||||
3. Install `yum-utils`, which provides the `yum-config-manager` utility:
|
||||
|
|
|
@ -79,12 +79,12 @@ the repository.
|
|||
|
||||
2. Store two `yum` variables in `/etc/yum/vars/`.
|
||||
|
||||
- Store your EE repository URL in `/etc/yum/vars/dockerurl`. Replace
|
||||
- Store your EE repository URL in `/etc/yum/vars/dockersuburl`. Replace
|
||||
`<DOCKER-EE-URL>` with the URL you noted down in the
|
||||
[prerequisites](#prerequisites).
|
||||
|
||||
```bash
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockerurl'
|
||||
$ sudo sh -c 'echo "<DOCKER-EE-URL>" > /etc/yum/vars/dockersuburl'
|
||||
```
|
||||
|
||||
- Store your RHEL version string in `/etc/yum/vars/dockerosversion`.
|
||||
|
|
Loading…
Reference in New Issue