-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 1.22 KB
/
docker-compose.yml
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
version: '3.8'
services:
insecure-app:
build:
context: ./insecure-app
dockerfile: Dockerfile
image: confusedcrib/insecure-app:latest
ports:
- "8080:8080" # Changed from 5000 to match README
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Needed if app interacts with Docker
insecure-java:
build:
context: ./insecure-java
dockerfile: Dockerfile
image: confusedcrib/insecure-java:latest
ports:
- "8081:8080" # Changed host port to 8081, container still uses 8080
insecure-js:
build:
context: ./insecure-js
dockerfile: Dockerfile
image: confusedcrib/insecure-js:latest
ports:
- "3000:3000" # Node.js app port
environment:
- NODE_ENV=development
insecure-api:
build:
context: ./insecure-api
dockerfile: Dockerfile
image: confusedcrib/insecure-api:latest
ports:
- "8000:8000" # FastAPI/Uvicorn port
environment:
- PYTHONUNBUFFERED=1
workload-security-evaluator:
build:
context: ./workload-security-evaluator
dockerfile: Dockerfile
image: confusedcrib/workload-security-evaluator:latest
networks:
default:
name: insecure-network
driver: bridge