https://github.com/slashgordon/docker-aws-cdk-v2
UpToDate Docker aws cdk v2 image with all python packages.
https://github.com/slashgordon/docker-aws-cdk-v2
Last synced: 3 months ago
JSON representation
UpToDate Docker aws cdk v2 image with all python packages.
- Host: GitHub
- URL: https://github.com/slashgordon/docker-aws-cdk-v2
- Owner: SlashGordon
- License: apache-2.0
- Created: 2022-04-05T09:11:03.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T00:21:25.000Z (over 1 year ago)
- Last Synced: 2025-01-31T12:13:11.444Z (over 1 year ago)
- Language: Dockerfile
- Size: 114 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 700
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/SlashGordon/docker-aws-cdk-v2/actions/workflows/release.yaml)
# Docker AWS CDK
Containerised AWS CDK v2 to ensure consistent local development and simple CD pipelines.
## Usage
Run as a command using `cdk` as entrypoint:
docker run --rm --entrypoint cdk slashgordon/aws-cdk-v2 --version
Run as a shell and mount `.aws` folder and current directory as volumes:
docker run --rm -it -v ~/.aws:/root/.aws -v $(pwd):/opt/app slashgordon/aws-cdk-v2 bash
Using docker-compose:
cdk:
image: slashgordon/aws-cdk-v2
env_file: .env
entrypoint: aws
working_dir: /opt/app
volumes:
- ~/.aws:/root/.aws
- .:/opt/app:rw
And run `docker-compose run cdk --version`
## Language Support
CDK Supports different languages to define your (re)usable assets.
## Credits
Strongly inspired by [contino/docker-aws-cdk](https://github.com/contino/docker-aws-cdk) project.