You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#heroku container:release web --app wrongsecrets-ctf
71
72
echo"wait for contianer to come up"
72
73
until curl --output /dev/null --silent --head --fail https://arcane-scrubland-42646.herokuapp.com/;do
73
74
printf'.'
@@ -236,7 +237,7 @@ local_extra_info() {
236
237
if [[ $script_mode=="local" ]] ;then
237
238
echo""
238
239
echo"⚠️⚠️ This script is running in local mode, with no arguments this script will build your current code and package into a docker container for easy local testing"
239
-
echo"If the container gets built correctly you can run the container with the command: docker run -p 8080:8080 jeroenwillemsen/wrongsecrets:local-test, if there are errors the script should tell you what to do ⚠️⚠️"
240
+
echo"If the container gets built correctly you can run the container with the command: docker run -p 8080:8080 -p 8090:8090 jeroenwillemsen/wrongsecrets:local-test, if there are errors the script should tell you what to do ⚠️⚠️"
240
241
echo""
241
242
fi
242
243
}
@@ -447,7 +448,7 @@ test() {
447
448
if [[ "$script_mode"=="test" ]];then
448
449
echo"Running the tests"
449
450
echo"Starting the docker container"
450
-
docker run -d -p 8080:8080 jeroenwillemsen/wrongsecrets:local-test
451
+
docker run -d -p 8080:8080 -p 8090:8090 jeroenwillemsen/wrongsecrets:local-test
0 commit comments