Guest User

Untitled

a guest
Oct 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/usr/bin/env sh
  2. set -e
  3. case "${1}" in
  4. help)
  5. echo 'Usage:'
  6. echo ' $ docker run image:latest'
  7. ;;
  8. hello)
  9. echo 'Hello World!!!'
  10. ;;
  11. rollback)
  12. echo 'There is not one safe'
  13. ;;
  14. *)
  15. exec "$@"
  16. ;;
  17. esac
Add Comment
Please, Sign In to add comment