Created
February 23, 2017 15:41
-
-
Save grampelberg/24db8f76a55531701ffa091609292407 to your computer and use it in GitHub Desktop.
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
dps() { | |
docker ps --format 'table {{.Names}}\t{{.Image}}\t{{.Ports}}' | awk -v OFS='\t' '{if($3 ~ /->/) {split($3,a,":"); split(a[2],b,"->"); print $1, $2, b[1] } else { print $1, $2, $3}} ' | column -t | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment