You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 29, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -30,12 +30,16 @@ First public beta release of the Docker CLI with
30
30
integration!
31
31
32
32
This release includes:
33
+
33
34
* Initial support for deploying containers and Compose applications to Azure Container Instances (ACI)
34
35
* A gRPC API for managing contexts and Azure containers
35
36
36
37
### Known issues
38
+
37
39
* 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.
38
40
* Exec currently only allows interactive sessions with a terminal (`exec -t`), not specify commands in the command line.
39
41
*`docker run` detaches from the container by default, even if `-d` is not specified. Logs can be seen later on with command `docker log <CONTAINER_ID>`.
40
42
* Replicas are not supported when deploying Compose application. One container will be run for each Compose service. Several services cannot expose the same port.
41
-
* Windows Containers are not supported on ACI in multi-container compose applications.
43
+
* Name resolution between Compose services is done using the `/etc/hosts` file. If container code ignores `/etc/hosts`, the container will not be able to resolve other Compose services in the same application.
44
+
* With an ACI context, Compose applications can be deployed with the new command `docker compose up`. The `docker-compose` command will fail if used with ACI contexts. The error message is not explicit and needs to be improved.
45
+
* Windows containers are not supported on ACI in multi-container Compose applications.
0 commit comments