From c000a9b467cb71db93d9662344a4690e1e7252ea Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Wed, 22 Dec 2021 12:55:27 +0100 Subject: [PATCH] Improve startup message Docker --- docker/start.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/start.sh b/docker/start.sh index d25b00214..a4912e120 100755 --- a/docker/start.sh +++ b/docker/start.sh @@ -51,8 +51,9 @@ function write_start_message() { \ /\ / | __/ | |_) | | |__| | | (_) | | (_| | | |_ \/ \/ \___| |_.__/ \_____| \___/ \__,_| \__| " >> webgoat.log - echo "WebGoat and WebWolf successfully started..." >> webgoat.log - pidof nginx >/dev/null && echo "Browse to http://localhost to get started" >> webgoat.log || echo "Browse to http://localhost:8080/WebGoat or http://localhost:9090/WebWolf to get started" >> webgoat.log + echo $'WebGoat and WebWolf successfully started...\n' >> webgoat.log + echo "NOTE: port numbers mentioned below may vary depending on your port mappings while starting the Docker container" >> webgoat.log + pidof nginx >/dev/null && echo "Browse to http://localhost to get started" >> webgoat.log || echo "Browse to http://localhost:8080/WebGoat or http://localhost:9090/WebWolf to get started." >> webgoat.log } function tail_log_file() {