https://github.com/yenlincc/containerized-aws-cdk
A containerized, complete AWS CDK setup so that you can start working on your CDK app in no time without worrying about installation
https://github.com/yenlincc/containerized-aws-cdk
aws aws-cdk cdk container docker docker-image dockerfile
Last synced: over 1 year ago
JSON representation
A containerized, complete AWS CDK setup so that you can start working on your CDK app in no time without worrying about installation
- Host: GitHub
- URL: https://github.com/yenlincc/containerized-aws-cdk
- Owner: yenlincc
- License: apache-2.0
- Created: 2019-12-21T23:29:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T13:57:12.000Z (over 3 years ago)
- Last Synced: 2024-10-20T18:36:16.500Z (over 1 year ago)
- Topics: aws, aws-cdk, cdk, container, docker, docker-image, dockerfile
- Language: Shell
- Size: 54.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# containerized-aws-cdk

A containerized, complete AWS CDK setup so that you can start working on your CDK app in no time without worrying about installation
## Usage
**DockerHub:**
Download the containerized CDK Docker image
```
docker pull thinkthenrant/containerized-aws-cdk:latest
```
Then, create a directory that we will persist the CDK app in and launch the
containerized CDK image:
```
mkdir myCdkApp
docker run -it -v $PWD/myCdkApp:/myCdkApp -w=/myCdkApp thinkthenrant/containerized-aws-cdk
```
Or **GitHub Packages:**
Download the containerized CDK Docker image
```
# USERNAME is your GitHub user name
# TOKEN is your GitHub personall access token
docker login -u USERNAME -p TOKEN docker.pkg.github.com
docker pull docker.pkg.github.com/thinkthenrant/containerized-aws-cdk/aws-cdk:latest
```
Then, create a directory that we will persist the CDK appsin and launch the
containerized CDK image:
```
mkdir myCdkApp
docker run -it -v $PWD/myCdkApp:/myCdkApp -w=/myCdkApp docker.pkg.github.com/thinkthenrant/containerized-aws-cdk/aws-cdk
```
### Start creating your CDK app
After your container started, run:
```
cdk init
```
and follow along!
More information: https://docs.aws.amazon.com/cdk/index.html