-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (38 loc) · 928 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (38 loc) · 928 Bytes
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
version: "3.9"
services:
modkit:
build: ./apps/modkit
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3001:3000"
nestjs:
build: ./apps/nestjs
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3002:3000"
baseline:
build: ./apps/baseline
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3003:3000"
wire:
build: ./apps/wire
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3004:3000"
fx:
build: ./apps/fx
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3005:3000"
do:
build: ./apps/do
cpus: ${BENCHMARK_CPU_LIMIT:-1.00}
mem_limit: ${BENCHMARK_MEMORY_LIMIT:-1024m}
ports:
- "3006:3000"