Emit the urls at which the weave scope UI is reachable on scope launch.

This commit is contained in:
Tom Wilkie
2015-06-02 12:41:17 +00:00
parent 679eccf7d2
commit a69600831c

5
scope
View File

@@ -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)