Deployment Configuration and General Enhancements
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.