Skip to content

Instantly share code, notes, and snippets.

@madsonic
Last active May 28, 2021 09:32
Show Gist options
  • Save madsonic/b65fa5a0c78137456fd572b424560013 to your computer and use it in GitHub Desktop.
Save madsonic/b65fa5a0c78137456fd572b424560013 to your computer and use it in GitHub Desktop.
more readable container commands
command:
- "/bin/sh"
- "-c"
args:
- |
echo hello
i=0
while ((i<5))
do
echo hello${i}
i=$((i+1))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment