Skip to content

Setting Up an AWS Container Registry

LakshmiMekala edited this page Oct 19, 2021 · 3 revisions

Amazon AWS uses the AWS Container Registry for securely building and deploying your applications.

Note: If you build your container image using buildah tool, similar to docker login,tag,push or pull commands same is available with buildah tool.

Registry setup

  • Create the container image repository in AWS by running the following command:
aws ecr create-repository --repository-name <repository-name>
  • Tag the created image by running the following command
docker tag fdcache:01 <aws_account_id>.dkr.ecr.<region>.amazonaws.com/<repository-name>:01

Push Image

  • Run the following command to get docker login details:
aws ecr get-login --no-include-email
  • Further, login to docker and push the image to your registry.
docker push <aws_account_id>.dkr.ecr.<region>.amazonaws.com/fdcache:01

Next Steps

  • How to deploy TIBCO BusinessEvents application is available here
Clone this wiki locally