Sign inSign up

contino/sceptre

By contino

•Updated about 7 years ago

Containerised Sceptre with other useful dev tools such as Make

Image
1

3.9K

contino/sceptre repository overview

⁠Docker Sceptre

Containerised Sceptre⁠ to ensure consistent local development and simple CD pipelines.

⁠Usage

Run as a command using sceptre as entrypoint:

docker run --rm --entrypoint sceptre contino/sceptre --version

Run as a shell and mount the .aws directory and current directory as volumes:

docker run --rm -it -v ~/.aws:/root/.aws -v $(pwd):/opt/app contino/sceptre bash

Using docker-compose:

sceptre:
  image: contino/sceptre
  env_file: .env
  entrypoint: sceptre
  working_dir: /opt/app
  volumes:
  - ~/.aws:/root/.aws:ro
  - .:/opt/app:rw
  

And run docker-compose run sceptre --version

⁠Build

Update the SCEPTRE_VERSION in both Makefile and Dockerfile. Then run:

make build

Docker Hub will automatically trigger a new build.

Tag summary

Content type

Image

Digest

Size

40.9 MB

Last updated

about 7 years ago

docker pull contino/sceptre