Skip to content

Instantly share code, notes, and snippets.

@adelevie
Created September 30, 2016 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adelevie/eab33b16db99327c21f8ce8742173d92 to your computer and use it in GitHub Desktop.
Save adelevie/eab33b16db99327c21f8ce8742173d92 to your computer and use it in GitHub Desktop.
alias curl='docker run --rm appropriate/curl'
alias jq='docker run -i pinterb/jq:0.0.15'
alias python='docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp python:3 python'
alias ruby='docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp ruby:2.1 ruby'
curl 'https://api.github.com/repos/stedolan/jq/commits' | jq '.'
python -c "print('hello from python')"
ruby -e "puts 'hello from ruby'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment