From 723f4f9ef033b7d13b098634dbec7adbae40b51d Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Mon, 15 Jul 2013 14:55:51 -0700 Subject: [PATCH 1/4] Bump version to 0.5.0 Upstream-commit: bc21b3ebf0dadc51e47d971217d132e5299831a0 Component: engine --- components/engine/CHANGELOG.md | 11 +++++++++++ components/engine/commands.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/components/engine/CHANGELOG.md b/components/engine/CHANGELOG.md index f4912ae661..92694148a6 100644 --- a/components/engine/CHANGELOG.md +++ b/components/engine/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.5.0 (2013-07-16) + + Remote API: Add /top endpoint + + Runtime: host directories can be mounted as volumes with 'docker run -b' + + Runtime: Add UDP support + + Builder: Add ENTRYPOINT instruction + + Builder: Add VOLUMES instruction + * Runtime: Add options to docker login + * Builder: Display full output by default + - Registry: Fix issues when pushing to 3rd part registries + - Runtime: Skip `hostname` when merging config + ## 0.4.8 (2013-07-01) + Builder: New build operation ENTRYPOINT adds an executable entry point to the container. - Runtime: Fix a bug which caused 'docker run -d' to no longer print the container ID. diff --git a/components/engine/commands.go b/components/engine/commands.go index b581590bc2..d814197ac6 100644 --- a/components/engine/commands.go +++ b/components/engine/commands.go @@ -27,7 +27,7 @@ import ( "unicode" ) -const VERSION = "0.4.8" +const VERSION = "0.5.0" var ( GITCOMMIT string From 76eb7762ab7caf667a1376be7e01e24540692469 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Wed, 17 Jul 2013 11:39:38 -0700 Subject: [PATCH 2/4] Small changes in changelog wording Upstream-commit: 8af945f353379a96eb036d67fb24d489c5e16808 Component: engine --- components/engine/CHANGELOG.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/components/engine/CHANGELOG.md b/components/engine/CHANGELOG.md index 92694148a6..dff042f1da 100644 --- a/components/engine/CHANGELOG.md +++ b/components/engine/CHANGELOG.md @@ -1,15 +1,17 @@ # Changelog ## 0.5.0 (2013-07-16) - + Remote API: Add /top endpoint - + Runtime: host directories can be mounted as volumes with 'docker run -b' - + Runtime: Add UDP support - + Builder: Add ENTRYPOINT instruction - + Builder: Add VOLUMES instruction - * Runtime: Add options to docker login - * Builder: Display full output by default - - Registry: Fix issues when pushing to 3rd part registries - - Runtime: Skip `hostname` when merging config + + Runtime: List all processes running inside a container with 'docker top' + + Runtime: Host directories can be mounted as volumes with 'docker run -b' + + Runtime: Containers can expose public UDP ports + + Runtime: Optionally specify an exact public port (eg. '-p 80:4500') + + Registry: New image naming scheme inspired by Go packaging convention allows arbitrary combinations of registries + + Builder: ENTRYPOINT instruction sets a default binary entry point to a container + + Builder: VOLUME instruction marks a part of the container as persistent data + * Builder: 'docker build' displays the full output of a build by default + * Runtime: 'docker login' supports additional options + - Runtime: Dont save a container's hostname when committing an image. + - Registry: Fix issues when uploading images to a private registry ## 0.4.8 (2013-07-01) + Builder: New build operation ENTRYPOINT adds an executable entry point to the container. From 926b49f01623f4a7f9fef6814ead72241423a73b Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Wed, 17 Jul 2013 11:51:26 -0700 Subject: [PATCH 3/4] Changed date on changelog Upstream-commit: ac14c463d55494fdab88d36ea74a4ecef8ab48dc Component: engine --- components/engine/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/CHANGELOG.md b/components/engine/CHANGELOG.md index dff042f1da..0ed6495ae8 100644 --- a/components/engine/CHANGELOG.md +++ b/components/engine/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.5.0 (2013-07-16) +## 0.5.0 (2013-07-17) + Runtime: List all processes running inside a container with 'docker top' + Runtime: Host directories can be mounted as volumes with 'docker run -b' + Runtime: Containers can expose public UDP ports From 608601a19192fc555959cf047ec9f643cc56e1cb Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 18 Jul 2013 16:24:12 +0000 Subject: [PATCH 4/4] change -b -> -v and add udp example Upstream-commit: b083418257edbcb769dd1bf9a6a3dafd334d5969 Component: engine --- components/engine/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/engine/CHANGELOG.md b/components/engine/CHANGELOG.md index 0ed6495ae8..00e358c136 100644 --- a/components/engine/CHANGELOG.md +++ b/components/engine/CHANGELOG.md @@ -2,8 +2,8 @@ ## 0.5.0 (2013-07-17) + Runtime: List all processes running inside a container with 'docker top' - + Runtime: Host directories can be mounted as volumes with 'docker run -b' - + Runtime: Containers can expose public UDP ports + + Runtime: Host directories can be mounted as volumes with 'docker run -v' + + Runtime: Containers can expose public UDP ports (eg, '-p 123/udp') + Runtime: Optionally specify an exact public port (eg. '-p 80:4500') + Registry: New image naming scheme inspired by Go packaging convention allows arbitrary combinations of registries + Builder: ENTRYPOINT instruction sets a default binary entry point to a container