Skip to content

Releases: DNXLabs/docker-ecs-deploy

Test Container Override

03 Jul 23:46
Compare
Choose a tag to compare
test-override

Lint

3.0.2

25 Mar 21:23
fd13e48
Compare
Choose a tag to compare

What's Changed

  • run-task.py should exit with correct code by @yifanfu in #27

New Contributors

Full Changelog: 3.0.1...3.0.2

3.0.1

18 Jun 23:55
bee86e7
Compare
Choose a tag to compare

Add register of task definition as a single action, for updating schedule tasks (cronjobs)

3.0.0

30 May 23:27
7de7e79
Compare
Choose a tag to compare

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

2.4.2

17 Apr 13:53
a009e60
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.0...2.4.2

2.4.1

12 Feb 22:28
a009e60
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.4.0...2.4.1

2.4.0

31 Oct 07:08
3d43023
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.3.1...2.4.0

2.3.1

07 Feb 09:59
794070c
Compare
Choose a tag to compare

What's Changed

New Contributors

Notes

Permissions required to run ecr-enhanced-scanning.py

"inspector2:ListCoverageStatistics",
"inspector2:ListFindings",
"inspector2:ListFindingAggregations",
"inspector2:ListCoverage",
"inspector2:GetFindingsReportStatus",
"inspector2:ListTagsForResource"`

Full Changelog: 2.2.1...2.3.1

2.2.1

24 Jun 09:36
Compare
Choose a tag to compare

Add security group variable to run-task.sh. Necessary for FARGATE task.

2.2.0

23 Jun 06:15
Compare
Choose a tag to compare

Include service type fargate on run-task.sh