Questions tagged [amazon-ecr]

Amazon ECR stands for "Amazon Elastic Container Registry". It is a part of Amazon Web Services (AWS) and is a managed Docker container registry that stores and manages Docker container images.

Amazon Elastic Container Registry (ECR) is a fully managed container registry that makes it easy for developers to store, manage, and deploy container images. Amazon ECR eliminates the need to operate your own container registry or worry about scaling the underlying infrastructure. Amazon ECR hosts your images in a highly available and scalable architecture, allowing you to reliably deploy containers for your applications. Integration with AWS Identity and Access Management (IAM) provides resource-level control of each repository.

For more details about the product, click here. To get started with Amazon ECR, please see the User Guide.

888 questions
-1
votes
2 answers

Create AWS container without programatic access

I need to create a AWS container with ECS. However, I don't have programatic access for push the image in the ECR repository and I don't found other way to create a container. My question is: Is there another way to create a container without…
-1
votes
1 answer

How we can access private repo of ECR aws?

I need help. I am storing one image in ECR private repo, and I need to use that in the ECS task definition, so with that, I run a new task under ECS. I tried with ecsTaskExecutionPolicy and secret manager, but still, it is not working. Can someone…
-1
votes
2 answers

local vmware takes lot of time to pull the docker image from AWS ECR

Recently I moved my registry from Dockerhub to AWS ECR. I'm using Jenkins to pull image and deploy to local vmware. I'm using docker swarm as container orchestration tool.When I was using Dockerhub jenkins was able to pull and deploy docker services…
-1
votes
1 answer

Docker Image Issue in ECR (Error: Invalid or corrupt jarfile /app.jar)

FROM openjdk:11 VOLUME /tmp ARG JAR_FILE COPY ${JAR_FILE} app.jar ENTRYPOINT ["java","-jar","/app.jar"] This is my Docker file for spring boot app and I am pushing it to the ECR directly from Github actions. I can see the image pushed to the…
-1
votes
1 answer

Unable to login ECR web page and show error message

Could you check why user kcizek is not able to login to either hub.tess.io nor ecr? This is first time login but it should work with corp and PIN + Yubi. Login works for me just fine. I am unable to access https://ecr.vip.ebayc3.com/repository/ When…
Yuxin
  • 1
  • 1
-1
votes
1 answer

Finding the values for executionRoleArn, taskRoleArn

I'm working through an AWS Python tutorial, module 2. I'm at the point Section C, where I have to create a task definition by filling in some REPLACE_ME values in a json file. { "family": "mythicalmysfitsservice", "cpu": "256", "memory":…
user3556757
  • 3,469
  • 4
  • 30
  • 70
-1
votes
1 answer

Docker tagging without 'latest' tag?

We've been discussing tagging strategies for our docker ECR repos and what we've landed on doesn't involve use of the latest tag at all. I know latest isn't anything automatic. It's just a regular tag. But it's also a convention. Is it expected that…
xdhmoore
  • 8,935
  • 11
  • 47
  • 90
-1
votes
2 answers

How to automate the creation of repo in ECR?

docker push cannot push the docker image to ECR, because the documentation says, If your image repository does not exist in the registry you intend to push to yet, create it. For more information, see Creating a Repository. Repository creation…
overexchange
  • 15,768
  • 30
  • 152
  • 347
-2
votes
1 answer

ECR Lifecycle policies do not delete anymore

It seems like ECR is broken - anyone else experiencing this? Lifecycle policies just stopped working: image layers are not in use rules work when tested I can delete manually I noticed this due to increase in ECR costs. Example policy not…
lifeofguenter
  • 1,121
  • 1
  • 13
  • 22
-2
votes
1 answer

Getting Connection Refused error even though the tasks are running inside ecs

I am trying to deploy flask python application in aws using ecs. My Ecs tasks are running and inside ecs logs, I can see that the server has been started. But still when I issue the public ip in browser, it shows connection refused error. enter…
-2
votes
2 answers

How to update an ecs service with specific tag version?

I'm trying to update an ecs fargate service that has multiple tags associated with the given ecr container image that's used by the service's task definition. The container image in ecr has the following tags: 2023.3.0-latest, test As you can see,…
-2
votes
1 answer

Build docker image with terraform push it to ECR repo getting provisioner "local-exec" error

I have written terraform file to create ecr repo and build the docker image and push it to ecr repo and in build argument I have given github token and that token has been created as github action secrets. The intention is build argument which is…
-2
votes
1 answer

Python 3.9 Supported for Docker images?

We are using 3.8 python for our docker images AWS. Does docker supports 3.9 for Docker images Looking into blogs, for latest updates.
-2
votes
1 answer

Im running a lambda python code taken from ECR using ec2 getting this error

Lambda Error Output { "errorMessage": "[Errno 30] Read-only file system: '/home/sbx_user1051'", "errorType": "OSError", "stackTrace": [ " File \"/var/lang/lib/python3.8/imp.py\", line 234, in load_module\n return load_source(name,…
-2
votes
1 answer

publically pushed docker images on Amazon ECR is accessible to anyone outside organizations?

I am pushing my docker image to aws ecr as public image, can it be pulled by anyone.? Or it can be pulled only within the account users.?
Jayanth Bala
  • 758
  • 1
  • 5
  • 11
1 2 3
59
60