Updated 1.3.0 Milestone Project Page (markdown)

Aanand Prasad 2015-04-24 17:00:43 +01:00
parent 0a6dcac5ad
commit 7770899233

@ -12,6 +12,13 @@
Rather than deleting and re-creating every container on every invocation of `docker-compose up`, Compose will intelligently only re-create what is necessary in order to pick up changes to `docker-compose.yml` or updated service images.
#### Support new Docker networking idioms
Docker 1.7 will introduce the top-level concept of a "network", accompanied by new CLI and API functionality. Compose will add support for networks, which might involve one or both of:
- putting all containers in a project-wide network
- adding a `network` key so that users can enable more specific inter-service communication
#### Use labels to keep track of containers
Rather than using container names, which forces Compose to use rather hacky logic in places and stops users from customising names, Compose will use Docker's new "labels" feature to keep track of its containers. This will also improve performance on hosts or clusters with lots of containers running.