Final Compose 1.23.0 updates

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-10-29 11:50:49 -07:00
parent d5b9b8bf0f
commit 5a2e15dc04
3 changed files with 19 additions and 2 deletions

View File

@ -23,7 +23,7 @@ latest_stable_docker_engine_api_version: "1.37"
docker_ce_stable_version: "18.03"
docker_ce_edge_version: "18.05"
docker_ee_version: "17.06"
compose_version: "1.22.0"
compose_version: "1.23.0"
machine_version: "0.14.0"
distribution_version: "2.6"
dtr_version: "2.5"

View File

@ -16,6 +16,7 @@ Options:
--pull Always attempt to pull a newer version of the image.
-m, --memory MEM Sets memory limit for the build container.
--build-arg key=val Set build-time variables for services.
--parallel Build images in parallel.
```
Services are built once and then tagged, by default as `project_service`. For

View File

@ -5,7 +5,7 @@ keywords: release notes, compose
toc_max: 2
---
## 1.23.0 (2018-10-10)
## 1.23.0 (2018-10-30)
### Important note
@ -24,6 +24,9 @@ naming scheme accordingly before upgrading.
to print a hash string for each service's configuration to facilitate rolling
updates.
- Added `--parallel` flag to the `docker-compose build` command, allowing
Compose to build up to 5 images simultaneously.
- Output for the `pull` command now reports status / progress even when pulling
multiple images in parallel.
@ -51,14 +54,27 @@ naming scheme accordingly before upgrading.
the actual exit code even when the watched container isn't the cause of the
exit.
- Fixed an issue that would prevent recreating a service in some cases where
a volume would be mapped to the same mountpoint as a volume declared inside
the image's Dockerfile.
- Fixed a bug that caused hash configuration with multiple networks to be
inconsistent, causing some services to be unnecessarily restarted.
- Fixed a bug that would cause failures with variable substitution for services
with a name containing one or more dot characters
- Fixed a pipe handling issue when using the containerized version of Compose.
- Fixed a bug causing `external: false` entries in the Compose file to be
printed as `external: true` in the output of `docker-compose config`
- Fixed a bug where issuing a `docker-compose pull` command on services
without a defined image key would cause Compose to crash
- Volumes and binds are now mounted in the order they're declared in the
service definition
### Miscellaneous
- The `zsh` completion script has been updated with new options, and no