From 6d901c599da7c066697a92ef55a14bc9cbd20d71 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Thu, 18 Jun 2020 15:13:00 +0200 Subject: [PATCH 1/2] Add changelog Signed-off-by: Christopher Crone --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..62e01665f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,37 @@ +# Changelog + + + +## 0.1.z - 2020-06-DD + +First public release beta 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) +* A gRPC API for managing contexts and containers + +### Known issues +* From 5e8b20678dd470f9323ee3bae14a0d1a22a5ff14 Mon Sep 17 00:00:00 2001 From: Christopher Crone Date: Thu, 18 Jun 2020 17:28:29 +0200 Subject: [PATCH 2/2] Changelog: Add known issues Signed-off-by: Christopher Crone --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e01665f..b7b27a044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,9 @@ integration! This release includes: * Initial support for deploying containers to Azure Container Instances (ACI) -* A gRPC API for managing contexts and containers +* 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