From a69600831cd4ab6c5f5f635c89e610d15c3b8d79 Mon Sep 17 00:00:00 2001 From: Tom Wilkie Date: Tue, 2 Jun 2015 12:41:17 +0000 Subject: [PATCH] Emit the urls at which the weave scope UI is reachable on scope launch. --- scope | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scope b/scope index 9cb30ba35..f46221fed 100755 --- a/scope +++ b/scope @@ -153,6 +153,11 @@ case "$COMMAND" in fi echo $CONTAINER + + echo "Weave Scope is reachable at the following URL(s):" >&2 + for ip in $(hostname -I); do + echo " * http://$ip:4040/" >&2 + done ;; stop)