Is it possible to give parameters to ECR image on AWS – Amazon Web Sevices
I built this docker image that I would run like this. docker run -e AWS_ACCESS_KEY_ID=<my-access-key> -e AWS_SECRET_ACCESS_KEY=<my-secret-access-key> -it --rm -p 9000:8080 etl_pipeline:latest I'm mostly looking at the -e parameters. So when running this image locally it all works fine. But…