From d40acb31468822bfebad686f0800997b8b8ccc02 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Wed, 24 Jun 2020 16:18:30 +0200 Subject: [PATCH] Changelog updates --- CHANGELOG.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7b27a044..e5c3d41eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,17 +23,19 @@ Release headlines [Release diff](https://github.com/docker/api/compare/...) --> -## 0.1.z - 2020-06-DD +## 0.1.4 - 2020-06-26 -First public release beta of the Docker CLI with +First public beta release of the Docker CLI with [ACI](https://azure.microsoft.com/en-us/services/container-instances/) integration! This release includes: -* Initial support for deploying containers to Azure Container Instances (ACI) +* Initial support for deploying containers and Compose applications to Azure Container Instances (ACI) * A gRPC API for managing contexts and Azure containers ### Known issues -* Mapping a container port to a different host port is not current supported (i.e.: `docker run -p 80:8080`) -* Exec currently only allows interactive sessions with a terminal (`exec -t`), not specify commands in the command line -* `docker run` detaches from the container by default, even if `-d` is not specified +* Mapping a container port to a different host port is not supported in ACI (i.e.: `docker run -p 80:8080`). You can only expose the container port to the same port on the host. +* Exec currently only allows interactive sessions with a terminal (`exec -t`), not specify commands in the command line. +* `docker run` detaches from the container by default, even if `-d` is not specified. Logs can be seen later on with command `docker log `. +* Replicas are not supported when deploying Compose application. One container will be run for each Compose service. Several services cannot expose the same port. +* Windows Containers are not supported on ACI in multi-container compose applications. \ No newline at end of file