-
-
Notifications
You must be signed in to change notification settings - Fork 778
Expand file tree
/
Copy pathdocker-compose.without_llm.yml
More file actions
57 lines (51 loc) · 1.3 KB
/
Copy pathdocker-compose.without_llm.yml
File metadata and controls
57 lines (51 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
version: "3.9"
services:
VulnerableApp-base:
image: sasanlabs/owasp-vulnerableapp:latest
VulnerableApp-jsp:
image: sasanlabs/owasp-vulnerableapp-jsp:latest
VulnerableApp-php:
image: sasanlabs/owasp-vulnerableapp-php:latest
depends_on:
- mongodb
mongodb:
image: mongo:8.0.12
ports:
- "27017:27017"
volumes:
- mongodb_data:/data/db
mailpit:
image: axllent/mailpit:v1.30.1
restart: unless-stopped
expose:
- "1025"
ports:
- "8025:8025"
environment:
- MP_MAX_MESSAGES=5000
- MP_DATABASE=/data/mailpit.db
- MP_SMTP_AUTH_ACCEPT_ANY=1
- MP_SMTP_AUTH_ALLOW_INSECURE=1
- MP_WEBROOT=/mailpit
volumes:
- mailpit_data:/data
VulnerableApp-facade:
depends_on:
- VulnerableApp-base
- VulnerableApp-jsp
- VulnerableApp-php
- mailpit
image: sasanlabs/owasp-vulnerableapp-facade:latest
volumes:
- ./templates:/etc/nginx/templates
ports:
- "80:80"
environment:
- NGINX_HOST=foobar.com
- NGINX_PORT=80
- ENABLE_VULNERABLEAPP_JSP=true
- ENABLE_VULNERABLEAPP_PHP=true
- ENABLE_LLMFORGE=false
volumes:
mailpit_data:
mongodb_data: