Skip to content

Instantly share code, notes, and snippets.

@muatik
Last active May 27, 2019 12:09
Show Gist options
  • Save muatik/a168ebe5aec1776471960577e697cf00 to your computer and use it in GitHub Desktop.
Save muatik/a168ebe5aec1776471960577e697cf00 to your computer and use it in GitHub Desktop.
dockerId(){docker ps | grep $1 | awk '{print $1}'; };
dockerEXEC(){docker exec -it $(dcid $1) $2; };
dockerLOG(){docker logs -f $(dcid $1); };
alias dcid='dockerId $1'
alias dcexec='dockerEXEC'
alias dclog='dockerLOG'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment