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
0
votes
1 answer

Amazon ECR registry as Private registry

Cant I use Amazon ECR registry the same was as I am creating private registry? Whitelist the private registry by adding to daemon.json file and restart docker service docker push / docker pull…
stackjohnny
  • 645
  • 3
  • 7
  • 22
0
votes
1 answer

Docker and ECR credentials to ./docker/config

I am configuring both the docker and ecr-login on one of our mesos nodes. But when I have tried the ecr credentials docker is failing to pull images. Can anyone had it working for Docker version 1.11.2, build b9f10c9 { "auths": { …
user6826691
  • 1,813
  • 9
  • 37
  • 74
0
votes
1 answer

access ecr images from within jenkins docker ecs container

Hello Jenkins / Docker experts - Stuff that is working: Using the approach suggested here, I was able to get Jenkins docker image running in an AWS ECS cluster. Using -v volume mounts for docker socket (/var/run/docker.sock) and docker…
Satya
  • 1,037
  • 3
  • 15
  • 34
0
votes
1 answer

ECS auto deploy with ECR

I'm using GitHub, Jenkins, AWS ECR, AWS ECS. I want to deploy automatically when GitHub has a new commit. When GitHub, have new commit, GitHub, sent webhook to Jenkins, Jenkins build images and push to ECR with tag 'latest'. I wonder how can I make…
0
votes
1 answer

Kubernetes can't pull docker image from AWS ECR

we are a microservice architecture on kubernetes. Since a simple kernel update. Our testing environment is unable to pull the docker images from the AWS ECR repository. We are running it on a EC2 server. This is my error message: Failed to pull…
0
votes
2 answers

Deploy docker image with TFS to AWS ECR

I'm building docker images with TFS. After the image is build I would like to push it to Amazon EC2 Container Registry (ECR). What is the best way to achieve this? There is a extension for TFS to e.g. upload data to AWS S3 or run AWS CLI commands.…
Mathias
  • 1,819
  • 4
  • 22
  • 34
0
votes
2 answers

Unable to push docker images into AWS ECR from Windows 10

When I try to execute this command: > aws ecr get-login --no-include-email --region us-east-1 I keep getting the error message: > Unknown options: --no-include-email I followed the instructions here: …
vanvasquez
  • 939
  • 1
  • 10
  • 18
0
votes
1 answer

Error in mesos slave when trying to pull image from ECR

Configuring a mesos slave to use amazon ECR gives the following error when it receives a job: Unsupported auth-scheme: BASIC Does this look familiar to anyone ? I'm running the slave pointed to my user's docker config json file, which i updated by…
andrei
  • 339
  • 3
  • 12
0
votes
1 answer

Elastic Beanstalk MultiContainer Docker Environment Variables

I have some docker images stored in ECR, and I'm trying to deploy them to ElasticBeanstalk. They're being deployed fine, but they're not picking up any of the environment variables from the host. If I deploy just the default multi-container docker…
0
votes
1 answer

Docker Pull taking unexpectedly long time via Ansible

Here is my setup: I have a Master, where my playbook is running, and the workers[count = 3] where my plays are running, and I have a certain docker pull command to be executed. The command[via Ansible] takes 6 mins to execute, when the same command…
Dawny33
  • 10,543
  • 21
  • 82
  • 134
-1
votes
1 answer

ECR list-images is not returning all the images

I just pushed an image with the tag v1.533.0 to my private repository in ECR. However, this version is not being listed when I call list-images. The following command returns nothing: aws ecr list-images --repository-name $MY_REPO --filter…
Keoma Borges
  • 683
  • 2
  • 12
  • 27
-1
votes
0 answers

Docker file build & push to ECR based on environment (dev, test, staging, prod)

I have a Docker file in which I need to copy a .ini file based on the environment to which it will be deployed. Environments: dev test staging prod so for example, to build and deploy to dev, I need to copy a file from my…
user10664542
  • 1,106
  • 1
  • 23
  • 43
-1
votes
1 answer

What can be the reason for AWS ECS stop deploying with new task revision?

Our system runs: github actions -> aws ecr aws ecr -> aws ecs (test, production cluster) aws ecs -> aws ec2 (test, production server) But now it has stopped deploying, so we get up 1 desired task, 1 pending task, but it wont deploy it and only…
Norvilt
  • 17
  • 1
-1
votes
1 answer

Can I apply another tag to an existing image in the ECR web interface?

Using the Amazon Elastic Container Registry (ECR) web interface, can I add another tag to an existing tagged image? The image was originally built over a year ago and many of its dependencies have been updated since then. Trying to rebuild it…
John Gordon
  • 29,573
  • 7
  • 33
  • 58
-1
votes
1 answer

Question: passing in dynamic variable into Dockerfile...?

We have an angular/express app that is dockerized and deployed in k8s. Dockerfile: FROM node:18 WORKDIR /usr/src/app COPY . . EXPOSE 1234 CMD [ "npm", "run", "prod" ] Is it possible to have a variable and have that variable be dynamic? Example…