Created
February 6, 2015 21:48
-
-
Save rdhyee/db6d038ff48f0bbad756 to your computer and use it in GitHub Desktop.
docker related alias for working with boot2docker or docker in general (docker_rm, docker_rmi)
This file contains hidden or 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
# docker aliases | |
alias docker_rmi='docker images -a -q -f "dangling=true" --no-trunc | xargs docker rmi' | |
alias docker_rm='docker ps -a -q --no-trunc | xargs docker rm' | |
alias docker_time='boot2docker ssh sudo ntpclient -s -h pool.ntp.org' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment