@@ -96,40 +96,39 @@ from the repository.
96
96
lvm2
97
97
```
98
98
99
- 2. Use the following command to set up the ** stable** repository. You always
100
- need the ** stable** repository, even if you want to install builds from the
101
- ** edge** or ** test** repositories as well.
99
+ 2. Use the following command to set up the ** stable** repository.
102
100
103
101
` ` ` bash
104
102
$ sudo yum-config-manager \
105
103
--add-repo \
106
104
{{ download-url-base }}/docker-ce.repo
107
105
` ` `
108
106
109
- 3. ** Optional** : Enable the ** edge** and ** test** repositories. These
110
- repositories are included in the ` docker.repo` file above but are disabled
111
- by default. You can enable them alongside the stable repository.
112
-
113
- ` ` ` bash
114
- $ sudo yum-config-manager --enable docker-ce-edge
115
- ` ` `
116
-
117
- ` ` ` bash
118
- $ sudo yum-config-manager --enable docker-ce-test
119
- ` ` `
120
-
121
- You can disable the ** edge** or ** test** repository by running the
122
- ` yum-config-manager` command with the ` --disable` flag. To re-enable it, use
123
- the ` --enable` flag. The following command disables the ** edge** repository.
124
-
125
- ` ` ` bash
126
- $ sudo yum-config-manager --disable docker-ce-edge
127
- ` ` `
128
-
129
- > ** Note** : Starting with Docker 17.06, stable releases are also pushed to
130
- > the ** edge** and ** test** repositories.
131
-
132
- [Learn about ** stable** and ** edge** builds](/install/index.md).
107
+ > ** Optional** : Enable the ** nightly** or ** test** repositories.
108
+ >
109
+ > These repositories are included in the ` docker.repo` file above but are disabled
110
+ > by default. You can enable them alongside the stable repository. The following
111
+ > command enables the ** nightly** repository.
112
+ >
113
+ > ` ` ` bash
114
+ > $ sudo yum-config-manager --enable docker-ce-nightly
115
+ > ` ` `
116
+ >
117
+ > To enable the ** test** channel, run the following command:
118
+ >
119
+ > ` ` ` bash
120
+ > $ sudo yum-config-manager --enable docker-ce-test
121
+ > ` ` `
122
+ >
123
+ > You can disable the ** nightly** or ** test** repository by running the
124
+ > ` yum-config-manager` command with the ` --disable` flag. To re-enable it, use
125
+ > the ` --enable` flag. The following command disables the ** nightly** repository.
126
+ >
127
+ > ` ` ` bash
128
+ > $ sudo yum-config-manager --disable docker-ce-nightly
129
+ > ` ` `
130
+ >
131
+ > [Learn about ** nightly** and ** test** channels](/install/index.md).
133
132
134
133
# ### Install Docker CE
135
134
@@ -160,16 +159,22 @@ from the repository.
160
159
` ` ` bash
161
160
$ yum list docker-ce --showduplicates | sort -r
162
161
163
- docker-ce.x86_64 {{ site.docker_ce_version }}.0.ce-1.el7.centos docker-ce-stable
162
+ docker-ce.x86_64 3:{{ site.docker_ce_version }}.1-3.el7 docker-ce-stable
163
+ docker-ce.x86_64 3:18.09.1-3.el7 docker-ce-stable
164
+ docker-ce.x86_64 3:18.09.0-3.el7 docker-ce-stable
165
+ docker-ce.x86_64 18.06.1.ce-3.el7 docker-ce-stable
166
+ docker-ce.x86_64 18.06.0.ce-3.el7 docker-ce-stable
167
+ docker-ce.x86_64 18.03.1.ce-1.el7.centos docker-ce-stable
168
+ docker-ce.x86_64 18.03.0.ce-1.el7.centos docker-ce-stable
164
169
` ` `
165
170
166
171
The list returned depends on which repositories are enabled, and is specific
167
172
to your version of CentOS (indicated by the ` .el7` suffix in this example).
168
173
169
174
b. Install a specific version by its fully qualified package name, which is
170
- the package name (` docker-ce` ) plus the version string (2nd column) up to
171
- the first hyphen, separated by a hyphen ( ` - ` ), for example,
172
- ` docker-ce-18.03.0.ce ` .
175
+ the package name (` docker-ce` ) plus the version string (2nd column)
176
+ starting at the first colon ( ` : ` ), up to the first hyphen, separated by
177
+ a hyphen ( ` - ` ). For example, ` docker-ce-docker-ce- 18.09.1 ` .
173
178
174
179
` ` ` bash
175
180
$ sudo yum install docker-ce-< VERSION STRING>
@@ -214,9 +219,9 @@ a new file each time you want to upgrade Docker.
214
219
[{{ download-url-base }}/7/x86_64/stable/Packages/]({{ download-url-base }}/7/x86_64/stable/Packages/)
215
220
and download the `.rpm` file for the Docker version you want to install.
216
221
217
- > **Note**: To install an **edge ** package, change the word
218
- > `stable` in the above URL to `edge `.
219
- > [Learn about **stable ** and **edge ** channels](/install/index.md).
222
+ > **Note**: To install a **nightly ** or **test** (pre-release) package,
223
+ > change the word `stable` in the above URL to `nightly` or `test `.
224
+ > [Learn about **nightly ** and **test ** channels](/install/index.md).
220
225
221
226
2. Install Docker CE, changing the path below to the path where you downloaded
222
227
the Docker package.
0 commit comments