Skip to content

Deployment Configuration and General Enhancements

Compare
Choose a tag to compare
@mattmanning mattmanning released this 03 Aug 23:41
· 3962 commits to master since this release

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]