Browse code

Merge pull request #8591 from fredlf/1.3release-notes

Edits and additions to release notes.

Sven Dowideit authored on 2014/10/17 10:26:11
Showing 1 changed files
... ...
@@ -77,8 +77,8 @@ The [Understanding Docker section](introduction/understanding-docker.md) will he
77 77
 
78 78
 ### Installation Guides
79 79
 
80
-The [installation section](/installation/#installation) will show you how to install
81
-Docker on a variety of platforms.
80
+The [installation section](/installation/#installation) will show you how to
81
+install Docker on a variety of platforms.
82 82
 
83 83
 
84 84
 ### Docker User Guide
... ...
@@ -91,14 +91,17 @@ implementation, check out the [Docker User Guide](/userguide/).
91 91
 **Version 1.3.0**
92 92
 
93 93
 This version fixes a number of bugs and issues and adds new functions and other
94
-improvements. These include:
94
+improvements. The [GitHub 1.3 milestone](https://github.com/docker/docker/issues?q=milestone%3A1.3.0+) has
95
+more detailed information. Major additions and changes include:
95 96
 
96 97
 *New command: `docker exec`*
97 98
 
98 99
 The new `docker exec` command lets you run a process in an existing, active
99 100
 container. The command has APIs for both the daemon and the client. With
100
-`docker exec`, you'll be able to do things like add or remove devices from running containers, debug running containers, and run commands that are not
101
-part of the container's static specification.
101
+`docker exec`, you'll be able to do things like add or remove devices from
102
+running containers, debug running containers, and run commands that are not
103
+part of the container's static specification. Details in the [command line
104
+reference](/reference/commandline/cli/#exec).
102 105
 
103 106
 *New command: `docker create`*
104 107
 
... ...
@@ -109,6 +112,7 @@ provides more control over management of the container lifecycle, giving you the
109 109
 ability to configure things like volumes or port mappings before the container
110 110
 is started. For example, in a rapid-response scaling situation, you could use
111 111
 `create` to prepare and stage ten containers in anticipation of heavy loads.
112
+Details in the [command line reference](/reference/commandline/cli/#create).
112 113
 
113 114
 *Tech preview of new provenance features*
114 115
 
... ...
@@ -127,7 +131,20 @@ regular, unsigned image.
127 127
 
128 128
 *Other improvements & changes*
129 129
 
130
-We've added a new security options flag that lets you set SELinux and AppArmor
131
-labels and profiles. This means you'll no longer have to use `docker run
130
+* We've added a new security options flag to the `docker run` command,
131
+`--security-opt`, that lets you set SELinux and AppArmor labels and profiles.
132
+This means you'll  no longer have to use `docker run --privileged` on kernels
133
+that support SE Linux or AppArmor. For more information, see the
134
+[command line reference](/reference/commandline/cli/#run).
132 135
 
136
+* A new flag, `--add-host`, has been added to `docker run` that lets you add
137
+lines to `/etc/hosts`. This allows you to specify different name
138
+resolution for the container than it would get via DNS. For more information,
139
+see the [command line reference](/reference/commandline/cli/#run).
140
+
141
+* You can now set a `DOCKER_TLS_VERIFY` environment variable to secure
142
+connections by default (rather than having to pass the `--tlsverify` flag on
143
+every call). For more information, see the [https guide](/articles/https).
144
+
145
+* Three security issues have been addressed in this release: [CVE-2014-5280,
146
+CVE-2014-5270, and CVE-2014-5282](https://groups.google.com/forum/#!msg/docker-announce/aQoVmQlcE0A/smPuBNYf8VwJ).