Sign inSign up

gunosy/circleci_codenize_tools

By gunosy

Updated about 7 years ago

Docker Codenized tools image.

Image
0

10K+

gunosy/circleci_codenize_tools repository overview

About this repository

For running codenize.tools on circleCI
DockerImage

How to Use for CircleCI

version: 2
jobs:
  build:
    docker:
      - image: gunosy/circleci_codenize_tools:latest
    working_directory: ~/<your-repository-name>
    environment:
      AWS_REGION: us-east-1
    steps:
      - checkout
      - run:
          name: miam dry-run
          command: |
            miam --dry-run --apply -f IAMfile --region ${AWS_REGION} --no-color --no-progress
      - deploy:
          name: miam deploy
          command: |
            if [ "${CIRCLE_BRANCH}" == "master" ]; then
              miam --apply -f IAMfile --region ${AWS_REGION} --no-color --no-progress
            fi

Notice

CircleCI requires AWS permissions.

Tag summary

Content type

Image

Digest

Size

520.3 MB

Last updated

almost 8 years ago

docker pull gunosy/circleci_codenize_tools