Search code examples
amazon-web-servicesdockeramazon-s3amazon-ecsamazon-ecr

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 programatic access?

I found a way to upload the image in Amazon S3 (compress the image into a .zip), but I don't know how to use the image after the upload.


Solution

  • I found a way to upload the image in Amazon S3 (compress the image into a .zip)

    That isn't going to work. You need to upload the image to ECR, not S3. ECS does not support loading images from S3.

    Is there another way to create a container without programatic access?

    You can't upload images to ECR without programmatic access. It isn't possible to upload images to ECR with only username/password access.