forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (48 loc) · 977 Bytes
/
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
52
version: "3.5"
services:
nginx:
image: nginx
network_mode: host
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- api01
- api02
ports:
- "9999:9999"
deploy:
resources:
limits:
cpus: "0.1"
memory: "50MB"
db:
image: postgres
network_mode: host
environment:
- POSTGRES_PASSWORD=123
- POSTGRES_USER=admin
- POSTGRES_DB=rinha
volumes:
- ./conf/postgresql.conf:/etc/postgresql/postgresql.conf
- ./sql/init.sql:/docker-entrypoint-initdb.d/init.sql
deploy:
resources:
limits:
cpus: "0.4"
memory: "200MB"
api01: &api
image: trndd/node-rinha-api
network_mode: host
environment:
- API_PORT=3000
depends_on:
- db
deploy:
resources:
limits:
cpus: "0.5"
memory: "100MB"
api02:
<<: *api
environment:
- API_PORT=3001