[20160803212934] Deployment Configuration and General Enhancements

Deployment Configuration

You can now specify the minimum and maximum percentage of containers to have running during rolling deploys using labels in your docker-compose.yml. (#922) [@beedub]

services:
  web:
    build: .
    labels:
      - convox.deployment.minimum=50
      - convox.deployment.maximum=200

WARNING: The DeploymentMinimum and DeploymentMaximum parameters to application stacks have been removed. If you were using these parameters please migrate your application to the labels shown above.

General Enhancements

  • Add --no-sync flag to convox start to disable code synchronization (#959) [@awsmsrc]