Skip to content
This repository was archived by the owner on Sep 29, 2020. It is now read-only.

Commit 2167996

Browse files
authored
Merge pull request #6 from gtardif/changelog_etc_hosts
Changelog etc hosts & known docker-compose error
2 parents f4c267b + c6bb264 commit 2167996

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,16 @@ First public beta release of the Docker CLI with
3030
integration!
3131

3232
This release includes:
33+
3334
* Initial support for deploying containers and Compose applications to Azure Container Instances (ACI)
3435
* A gRPC API for managing contexts and Azure containers
3536

3637
### Known issues
38+
3739
* 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.
3840
* Exec currently only allows interactive sessions with a terminal (`exec -t`), not specify commands in the command line.
3941
* `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>`.
4042
* 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

Comments
 (0)