Move WebWolf to port 9090 easier since most of the time something is running on 8081 Add scripts for easy building Docker files etc
11 lines
173 B
Bash
11 lines
173 B
Bash
#!/bin/bash
|
|
|
|
WEBGOAT_HOME=$(pwd)/../
|
|
|
|
cd ${WEBGOAT_HOME}/webgoat-server
|
|
docker build -t webgoat/webgoat-8.0 .
|
|
|
|
cd ${WEBGOAT_HOME}/webwolf
|
|
docker build -t webgoat/webwolf .
|
|
|