Closed brspurri closed 5 years ago
Hi @brspurri !
You can't pass positional arguments directly to the script, but you can:
--env PARAM1=param1 \
--env PARAM2=param2 \
--script "my_custom_script.sh"
and then in your script reference ${PARAM1}
and ${PARAM2}
as environment variables.
Great! Thanks!
Is there any way to use the
--script
param with additional parameters?For instance, the docs show:
But I would ideally like to do something like:
Is this possible in any way?