Sign inSign up

cmdlabs/aws-utils

By cmdlabs

Updated over 7 years ago

Image
2

100K+

cmdlabs/aws-utils repository overview

docker-aws-utils

Docker image with aws and other useful utilities

Why?

This image is used when following the 3 Musketeers pattern. By running aws inside Docker, we ensure consistency, control and confidence.

  • Consistency: when developing automated processes that use aws, you can be sure that they will function the same whether you run it on your Windows workstation or on a Jenkins build agent.
  • Control: by specifying the version of the image in [docker-compose.yml][], we can deploy to two incompatible versions of awscli simultaneously.
  • Confidence: reliable deployments build confidence in the use of CI/CD pipelines, creating a positive feedback loop that encourages developers to use CI/CD

How To Use

Makefile:

deploy:
	docker-compose run --rm aws apply

docker-compose.yml:

services:
  aws:
    image: cmdlabs/aws-utils:1.16.96
    volumes:
      - .:/opt/app:Z

Tag summary

Content type

Image

Digest

Size

91.7 MB

Last updated

over 7 years ago

docker pull cmdlabs/aws-utils