3.0.0
What's Changed
- Refactoring - update scripts to python by @lgothelipe in #23
- Fix/error msg by @lgothelipe in #24
Update ecs-deploy image to use python scripts as standard
Currently the image has a mix of bash and python scripts
Breaking changes
Script names changing from *.sh
to *.py
after command
key.
Example:
from:
db-migration:
image: public.ecr.aws/dnxsolutions/ecs-deploy:2.4.2
env_file:
- .env
command: /work/run-task.sh
volumes:
- ./task-definition-migration.tpl.json:/work/task-definition.tpl.json
- ./app-spec.tpl.json:/work/app-spec.tpl.json
to:
db-migration:
image: public.ecr.aws/dnxsolutions/ecs-deploy:latest
env_file:
- .env
command: /work/run-task.py
volumes:
- ./task-definition-migration.tpl.json:/work/task-definition.tpl.json
- ./app-spec.tpl.json:/work/app-spec.tpl.json
Full Changelog: 2.4.2...3.0.0