Skip to content

Instantly share code, notes, and snippets.

@thestephenmarshall
Last active August 29, 2015 14:27
Show Gist options
  • Save thestephenmarshall/6ae113b90d68f5630ecb to your computer and use it in GitHub Desktop.
Save thestephenmarshall/6ae113b90d68f5630ecb to your computer and use it in GitHub Desktop.
Docker Aliases
alias dockme='bash -c "export PATH='"'"'/Applications/Kitematic (Beta).app/Contents/Resources/resources:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'"'"' && clear && DOCKER_HOST=tcp://192.168.99.100:2376 DOCKER_CERT_PATH=$HOME/.docker/machine/machines/dev DOCKER_TLS_VERIFY=1 /bin/zsh"'
alias dcup='docker-compose up'
alias dbld='docker-compose build'
alias dps='docker ps'
alias dkill='docker rm $(docker stop $(docker ps -aq))'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment