Skip to content

Instantly share code, notes, and snippets.

@dmouse
Created July 8, 2016 17:52
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 dmouse/02945d417a843c2ff8715a69b7fe4c0c to your computer and use it in GitHub Desktop.
Save dmouse/02945d417a843c2ff8715a69b7fe4c0c to your computer and use it in GitHub Desktop.
Show the IP address within a docker-compose project
function docker-compose-ip
docker-ip (docker-compose ps | awk '{ if ($1 !~ "---------------------------------------------------------------------------" && $1 !~ "Name"){ print $1 } }') $argv;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment