From 095c1e715cc8d958d09a024811d726e01273b953 Mon Sep 17 00:00:00 2001 From: "Hongli Lai (Phusion)" Date: Tue, 25 Feb 2014 10:52:11 +0100 Subject: [PATCH] Add a Changelog entry that documents why all EXPOSEd ports are now removed. --- Changelog.md | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 88043b7..21914d7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,7 @@ * It is now possible to enable the insecure key by passing `--enable-insecure-key` to `my_init`. This allows users to easily enable the insecure key for convenience reasons, without having the insecure key enabled permanently in the image. * Fixed a bug that causes it not to print messages to stdout when there is no pseudo terminal. This is because Python buffers stdout by default. * Fixed an incorrectly printed message. + * The baseimage-docker image no longer EXPOSEs any ports by default. The EXPOSE entries were originally there to enable some default guest-to-host port forwarding entries, but in recent Docker versions they changed the meaning of EXPOSE, and now EXPOSE is used for linking containers. As such, we no longer have a reason to EXPOSE any ports by default. Fixes GH-15. ## 0.9.6 (release date: 2014-02-17) diff --git a/Makefile b/Makefile index 2c2d545..61d1cb3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = phusion/baseimage -VERSION = 0.9.6 +VERSION = 0.9.7 .PHONY: all build test tag_latest release ssh