Last active
May 28, 2021 09:32
-
-
Save madsonic/b65fa5a0c78137456fd572b424560013 to your computer and use it in GitHub Desktop.
more readable container commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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