Browse code

fix some version information

Signed-off-by: Qinglan Peng <qinglanpeng@zju.edu.cn>

Qinglan Peng authored on 2016/12/08 20:03:46
Showing 1 changed files
... ...
@@ -21,28 +21,28 @@ To learn more about Docker Engine's deprecation policy,
21 21
 see [Feature Deprecation Policy](https://docs.docker.com/engine/#feature-deprecation-policy).
22 22
 
23 23
 ## `filter` param for `/images/json` endpoint
24
-**Deprecated In Release: [v1.13](https://github.com/docker/docker/releases/tag/v1.13.0)**
24
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
25 25
 
26 26
 **Target For Removal In Release: v1.16**
27 27
 
28 28
 The `filter` param to filter the list of image by reference (name or name:tag) is now implemented as a regular filter, named `reference`.
29 29
 
30 30
 ### `repository:shortid` image references
31
-**Deprecated In Release: [v1.13](https://github.com/docker/docker/releases/tag/v1.13.0)**
31
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
32 32
 
33 33
 **Target For Removal In Release: v1.16**
34 34
 
35 35
 `repository:shortid` syntax for referencing images is very little used, collides with tag references can be confused with digest references.
36 36
 
37 37
 ### `docker daemon` subcommand
38
-**Deprecated In Release: [v1.13](https://github.com/docker/docker/releases/tag/v1.13.0)**
38
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
39 39
 
40 40
 **Target For Removal In Release: v1.16**
41 41
 
42 42
 The daemon is moved to a separate binary (`dockerd`), and should be used instead.
43 43
 
44 44
 ### Duplicate keys with conflicting values in engine labels
45
-**Deprecated In Release: [v1.13](https://github.com/docker/docker/releases/tag/v1.13.0)**
45
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
46 46
 
47 47
 **Target For Removal In Release: v1.16**
48 48
 
... ...
@@ -50,12 +50,12 @@ Duplicate keys with conflicting values have been deprecated. A warning is displa
50 50
 in the output, and an error will be returned in the future.
51 51
 
52 52
 ### `MAINTAINER` in Dockerfile
53
-**Deprecated In Release: v1.13.0**
53
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
54 54
 
55 55
 `MAINTAINER` was an early very limited form of `LABEL` which should be used instead.
56 56
 
57 57
 ### API calls without a version
58
-**Deprecated In Release: [v1.13](https://github.com/docker/docker/releases/)**
58
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
59 59
 
60 60
 **Target For Removal In Release: v1.16**
61 61
 
... ...
@@ -64,7 +64,7 @@ future Engine versions. Instead of just requesting, for example, the URL
64 64
 `/containers/json`, you must now request `/v1.25/containers/json`.
65 65
 
66 66
 ### Backing filesystem without `d_type` support for overlay/overlay2
67
-**Deprecated In Release: v1.13.0**
67
+**Deprecated In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
68 68
 
69 69
 **Target For Removal In Release: v1.16**
70 70
 
... ...
@@ -75,12 +75,12 @@ if it is formatted with the `ftype=0` option.
75 75
 Please also refer to [#27358](https://github.com/docker/docker/issues/27358) for
76 76
 further information.
77 77
 
78
-### Three argument form in `docker import`
78
+### Three arguments form in `docker import`
79 79
 **Deprecated In Release: [v0.6.7](https://github.com/docker/docker/releases/tag/v0.6.7)**
80 80
 
81 81
 **Removed In Release: [v1.12.0](https://github.com/docker/docker/releases/tag/v1.12.0)**
82 82
 
83
-The `docker import` command format 'file|URL|- [REPOSITORY [TAG]]' is deprecated since November 2013. It's no more supported.
83
+The `docker import` command format `file|URL|- [REPOSITORY [TAG]]` is deprecated since November 2013. It's no more supported.
84 84
 
85 85
 ### `-h` shorthand for `--help`
86 86
 
... ...
@@ -96,7 +96,7 @@ on all subcommands (due to it conflicting with, e.g. `-h` / `--hostname` on
96 96
 ### `-e` and `--email` flags on `docker login`
97 97
 **Deprecated In Release: [v1.11.0](https://github.com/docker/docker/releases/tag/v1.11.0)**
98 98
 
99
-**Removed In Release: [v1.14.0](https://github.com/docker/docker/releases/)**
99
+**Target For Removal In Release: v1.14**
100 100
 
101 101
 The docker login command is removing the ability to automatically register for an account with the target registry if the given username doesn't exist. Due to this change, the email flag is no longer required, and will be deprecated.
102 102
 
... ...
@@ -136,7 +136,7 @@ To make tagging consistent across the various `docker` commands, the `-f` flag o
136 136
 Passing an `HostConfig` to `POST /containers/{name}/start` is deprecated in favor of
137 137
 defining it at container creation (`POST /containers/create`).
138 138
 
139
-### Docker ps 'before' and 'since' options
139
+### `--before` and `--since` flags on `docker ps`
140 140
 
141 141
 **Deprecated In Release: [v1.10.0](https://github.com/docker/docker/releases/tag/v1.10.0)**
142 142
 
... ...
@@ -145,7 +145,7 @@ defining it at container creation (`POST /containers/create`).
145 145
 The `docker ps --before` and `docker ps --since` options are deprecated.
146 146
 Use `docker ps --filter=before=...` and `docker ps --filter=since=...` instead.
147 147
 
148
-### Docker search 'automated' and 'stars' options
148
+### `--automated` and `--stars` flags on `docker search`
149 149
 
150 150
 **Deprecated in Release: [v1.12.0](https://github.com/docker/docker/releases/tag/v1.12.0)**
151 151
 
... ...
@@ -234,7 +234,7 @@ The single-dash (`-help`) was removed, in favor of the double-dash `--help`
234 234
 
235 235
 **Deprecated In Release: [v0.10.0](https://github.com/docker/docker/releases/tag/v0.10.0)**
236 236
 
237
-**Removed In Release: [v1.13.0](https://github.com/docker/docker/releases/)**
237
+**Removed In Release: [v1.13.0](https://github.com/docker/docker/releases/tag/v1.13.0)**
238 238
 
239 239
 The flag `--run` of the docker commit (and its short version `-run`) were deprecated in favor
240 240
 of the `--changes` flag that allows to pass `Dockerfile` commands.