cdk-ecr-deployment icon indicating copy to clipboard operation
cdk-ecr-deployment copied to clipboard

A CDK construct to deploy docker image to Amazon ECR

Results 57 cdk-ecr-deployment issues
Sort by recently updated
recently updated
newest added

Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/cdklabs/cdk-ecr-deployment/actions/runs/3325261888 ------ *Automatically created by projen via the "upgrade-main" workflow*

auto-approve

Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/cdklabs/cdk-ecr-deployment/actions/runs/3325204689 ------ *Automatically created by projen via the "upgrade-v1-main" workflow*

auto-approve

Right now only the system-image is copied: ImageListSelection // set to either CopySystemImage (the default), CopyAllImages, or CopySpecificImages to control which instances we copy when the source reference is a...

enhancement
help wanted

BREAKING CHANGE: API to define credentials changed Fixes #179

Could we deploy a image with multiple tags(e.g. `my-app:latest` & `my-app:20220801`) into an ECR repo? Thanks!

enhancement
help wanted

when using this code: ``` new ecrdeploy.ECRDeployment(this, 'DeployDockerImage', { src: new ecrdeploy.DockerImageName(asset.imageUri), dest: new ecrdeploy.DockerImageName(`${cdk.Aws.ACCOUNT_ID}.dkr.ecr.us-west-2.amazonaws.com/test:nginx`), }); ``` I am receiving the error that `this` from does not match the typing:...

### Objective to use `ECRDeployment` in a pipeline to push to immutable repositories. ### Issue The pipeline fails because `ECRDeployment` fails to push an image to an immutable repository if...

enhancement
help wanted

Please publish NuGet version to support C#/.NET users.

I have a simple implementation like so: ``` new ecrDeploy.ECRDeployment(this, "DeployImage", { src: new ecrDeploy.DockerImageName("hello-world"), dest: new ecrDeploy.DockerImageName( repos.myRepo.repositoryUri + ":latest", ), }); new lambda.DockerImageFunction(this, functionName, { "my-function", code: lambda.DockerImageCode.fromEcr(repos.lambda)...

This PR adds support for using for cdk-ecr-deployment in Java based project. To be able to do so we need publishing to maven central in a similar way that is...