.mvn
docs
platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-lessons
webgoat-server
webwolf
.gitignore
.travis.yml
CREATE_RELEASE.MD
README.MD
buildspec.yml
docker-compose-local.yml
docker-compose-postgres.yml
docker-compose.yml
mvn-debug
mvnw
mvnw.cmd
pom.xml
18 lines
407 B
YAML
18 lines
407 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
webgoat:
|
|
image: webgoat/webgoat-8.0
|
|
environment:
|
|
- WEBWOLF_HOST=webwolf
|
|
- WEBWOLF_PORT=9090
|
|
ports:
|
|
- "8080:8080"
|
|
- "9001:9001"
|
|
volumes:
|
|
- .:/home/webgoat/.webgoat
|
|
webwolf:
|
|
image: webgoat/webwolf
|
|
ports:
|
|
- "9090:9090"
|
|
command: --spring.datasource.url=jdbc:hsqldb:hsql://webgoat:9001/webgoat --server.address=0.0.0.0 |