diff --git a/site/content/blogs/release-v133.en.md b/site/content/blogs/release-v133.en.md index bdfbe41b486..9f8905686f6 100644 --- a/site/content/blogs/release-v133.en.md +++ b/site/content/blogs/release-v133.en.md @@ -33,4 +33,29 @@ Copilot v1.33 brings big enhancements to help you develop more flexibly and effi ## Use ECS Task Role for `copilot run local` -## Container dependencies support for `copilot run local` \ No newline at end of file +## Container dependencies support for `copilot run local` + +`copilot run local` now respects the [`depends_on`](../docs/manifest/lb-web-service.md#image-depends-on) specified in the service manifest. + +For example: + +``` +image: + build: ./Dockerfile + depends_on: + nginx: start + +nginx: + image: + build: ./web/Dockerfile + essential: true + depends_on: + startup: success + +startup: + image: + build: ./front/Dockerfile + essential: false +``` + +This means that your main container will start only after nginx sidecar container has started and nginx will start only after startup container is completed successfully. \ No newline at end of file