-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (49 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
53 lines (49 loc) · 1.07 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
services:
# Run benchmarks in isolated environment
benchmark:
build: .
container_name: framework-benchmark
volumes:
- ./results:/benchmark/results
# Resource limits for consistent testing
cpus: 2
mem_limit: 2g
environment:
- NODE_ENV=production
# Individual framework services (for manual testing)
vercube:
build:
context: .
dockerfile: apps/vercube/Dockerfile
container_name: vercube-test
ports:
- "3001:3000"
cpus: 2
mem_limit: 512m
nestjs:
build:
context: .
dockerfile: apps/nestjs/Dockerfile
container_name: nestjs-test
ports:
- "3002:3000"
cpus: 2
mem_limit: 512m
routing-controllers:
build:
context: .
dockerfile: apps/routing-controllers/Dockerfile
container_name: routing-controllers-test
ports:
- "3003:3000"
cpus: 2
mem_limit: 512m
tsed:
build:
context: .
dockerfile: apps/tsed/Dockerfile
container_name: tsed-test
ports:
- "3004:3000"
cpus: 2
mem_limit: 512m