.mvn
config
docker
docs
platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-integration-tests
webgoat-lessons
webgoat-server
webwolf
.gitignore
.travis.yml
COPYRIGHT.txt
CREATE_RELEASE.MD
LICENSE.txt
README.MD
RELEASE_NOTES.md
buildspec.yml
docker-compose-local.yml
docker-compose-postgres.yml
docker-compose.yml
goat-with-reverseproxy.yaml
mvn-debug
mvnw
mvnw.cmd
pmd-ruleset.xml
pom.xml
project-suppression.xml
23 lines
503 B
YAML
23 lines
503 B
YAML
version: '3'
|
|
|
|
services:
|
|
webgoat:
|
|
image: webgoat/webgoat-8.0
|
|
environment:
|
|
- WEBWOLF_HOST=webwolf
|
|
- WEBWOLF_PORT=9090
|
|
- TZ=Europe/Amsterdam
|
|
ports:
|
|
- "8080:8080"
|
|
- "9001:9001"
|
|
volumes:
|
|
- .:/home/webgoat/.webgoat
|
|
working_dir: /home/webgoat
|
|
webwolf:
|
|
image: webgoat/webwolf
|
|
ports:
|
|
- "9090:9090"
|
|
command: --spring.datasource.url=jdbc:hsqldb:hsql://webgoat:9001/webgoat --server.address=0.0.0.0
|
|
depends_on:
|
|
- webgoat
|