All Questions
4 questions
0
votes
2
answers
383
views
What's the best way to sweep over a parameter space with ECS tasks?
How can I trigger N executions of the same task with different parameters in a way to systematically sweep a 3D paramter space?
I have AWS ECS Fargate tasks defined. They accept multiple args over the ...
0
votes
1
answer
981
views
Mount AWS CLI credentials to DockerFile
I am trying to mount the AWS CLI credentials from my local host system to my docker container so that I can install private packages in my requirements.txt file hosted on AWS.
I can run this example:
...
2
votes
0
answers
504
views
Docker - unable to run AWS S3 commands
Just started docker conda/miniconda3-centos7 but when went into container and installed pip install awscli and then did aws configure with default settings - can not run aws s3 ls.
Error:
Unable to ...
4
votes
0
answers
2k
views
how to develop and test a python AWS-lambda on local machine which is dependent on an S3 bucket
Is there a way to make a python aws-lambda on a local machine which can read and write data from an S3 bucket. I can get this to run on a lambda in AWS's web-page with the following code with no ...