-
Notifications
You must be signed in to change notification settings - Fork 0
Setting Up an AWS Container Registry
nareshkumarthota edited this page Jun 8, 2022
·
8 revisions
Amazon AWS uses the AWS Container Registry for securely building and deploying your applications.
- For TIBCO BusinessEvents application container image that you want to deploy to the Kubernetes cluster, see Containerize TIBCO BusinessEvents Application.
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.
- 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
- 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
- How to deploy TIBCO BusinessEvents application is available here