Skip to content

3.0.0

Compare
Choose a tag to compare
@lgothelipe lgothelipe released this 30 May 23:27
· 4 commits to master since this release
7de7e79

What's Changed

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