Merge pull request #152 from tomwilkie/149-url

Emit the urls at which the weave scope UI is reachable on scope launch.
This commit is contained in:
Tom Wilkie
2015-06-02 16:36:43 +01:00

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)