summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorAanand Prasad <aanand.prasad@gmail.com>2016-07-27 15:55:47 +0100
committerJoffrey F <joffrey@docker.com>2016-07-27 13:22:20 -0700
commit7fafd72c1e3497ad3e8265ffbac06dfce449d762 (patch)
tree5f6ce96a5320aaf5ed66253ebd58f35ea377d26c /CHANGELOG.md
parent60622026fa54453d6c49c7a1bbfd3ed93692e0c5 (diff)
Bump 1.8.0-rc3
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index afa35820..8ec7d5b5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,11 +9,15 @@ Change log
- As announced in 1.7.0, `docker-compose rm` now removes containers
created by `docker-compose run` by default.
+- Setting `entrypoint` on a service now empties out any default
+ command that was set on the image (i.e. any `CMD` instruction in the
+ Dockerfile used to build it). This makes it consistent with
+ the `--entrypoint` flag to `docker run`.
+
New Features
- Added `docker-compose bundle`, a command that builds a bundle file
to be consumed by the new *Docker Stack* commands in Docker 1.12.
- This command automatically pushes and pulls images as needed.
- Added `docker-compose push`, a command that pushes service images
to a registry.
@@ -27,6 +31,9 @@ Bug Fixes
- Fixed a bug where Compose would erroneously try to read `.env`
at the project's root when it is a directory.
+- `docker-compose run -e VAR` now passes `VAR` through from the shell
+ to the container, as with `docker run -e VAR`.
+
- Improved config merging when multiple compose files are involved
for several service sub-keys.
@@ -52,6 +59,9 @@ Bug Fixes
- Fixed a bug where errors during `docker-compose up` would show
an unrelated stacktrace at the end of the process.
+- `docker-compose create` and `docker-compose start` show more
+ descriptive error messages when something goes wrong.
+
1.7.1 (2016-05-04)
-----------------