about summary refs log tree commit diff
path: root/docker-ip
diff options
context:
space:
mode:
Diffstat (limited to 'docker-ip')
-rwxr-xr-xdocker-ip8
1 files changed, 8 insertions, 0 deletions
diff --git a/docker-ip b/docker-ip
new file mode 100755
index 0000000..e4da369
--- /dev/null
+++ b/docker-ip
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+for i in $(docker ps -q | awk '{print $1}'); do
+    ip=$(docker inspect --format="{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}" "${i}")
+    name=$(docker ps | awk -v i="${i}" '/i/ {print $NF}')
+
+    printf "%s\t%s\n" "${ip}" "${name}"
+done

Consider giving Nix/NixOS a try! <3