Skip to content

Commit

Permalink
Create docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
preetkaran20 authored Aug 19, 2022
1 parent baed2a5 commit 09e4f30
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: "3.9"
services:
VulnerableApp-base:
image: sasanlabs/owasp-vulnerableapp:latest
pull_policy: always

VulnerableApp-jsp:
image: sasanlabs/owasp-vulnerableapp-jsp:latest
pull_policy: always

VulnerableApp-php:
image: sasanlabs/owasp-vulnerableapp-php:latest
pull_policy: always

VulnerableApp-facade:
depends_on:
- VulnerableApp-base
- VulnerableApp-jsp
- VulnerableApp-php
image: sasanlabs/owasp-vulnerableapp-facade
pull_policy: always
volumes:
- ./templates:/etc/nginx/templates
ports:
- "80:80"
environment:
- NGINX_HOST=foobar.com
- NGINX_PORT=80

0 comments on commit 09e4f30

Please sign in to comment.