You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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,