Hi,
In one of the tasks I've created a file with the following to run aws cli
echo "aws glue start-job-run --job-name ${bamboo_job_name}" >> script.sh
Then I've created a task with Docker task type (and selected "Run a Docker Container" command and also I've mounted the volume
${bamboo.working.directory}/script.txt to /data/script.sh (container data volume).
I was wondering how do I run the script.txt and then mounted that on the container data volume. What "Container command" shall I pass to execute the script.
I've tested the same with a command like "aws sts get-caller-identity" and it worked just fine where I've used "aws sts get-caller-identity" in the "Container command" and mounted volume of the script with creds.
thanks in advance,