platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-lessons
webgoat-server
webwolf
.gitignore
.travis.yml
CREATE_RELEASE.MD
README.MD
buildspec.yml
docker-compose.yml
mvn-debug
pom.xml
15 lines
270 B
YAML
15 lines
270 B
YAML
version: '2.0'
|
|
|
|
services:
|
|
webgoat:
|
|
build: webgoat-server/
|
|
command: "sh /home/webgoat/start.sh"
|
|
ports:
|
|
- "8080:8080"
|
|
webwolf:
|
|
build: webwolf/
|
|
command: "sh /home/webwolf/start.sh"
|
|
depends_on:
|
|
- webgoat
|
|
ports:
|
|
- "8081:8081" |