forked from zanfranceschi/rinha-de-backend-2024-q1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (45 loc) · 1 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
version: "3.5"
services:
api01: &api
image: norbajr/rinha-norba-renan-elixir:latest
hostname: localhost
container_name: api01
network_mode: host
environment:
- RELEASE_NODE=api01
- RELEASE_COOKIE=rinha
- PORT=4000
deploy:
resources:
limits:
cpus: "0.6"
memory: "260MB"
api02:
<<: *api
hostname: localhost
container_name: api02
environment:
- RELEASE_NODE=api02
- RELEASE_COOKIE=rinha
- PORT=4001
depends_on:
- api01
command: [ "sh", "-c", "sleep 3 && /app/bin/rinha start" ]
nginx:
image: nginx:latest
container_name: nginx
network_mode: host
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- api01
- api02
# ports:
# # Obrigatório expor/usar a porta 9999 no load balancer!
# # não precisa expor no modo host
# - "9999:9999"
deploy:
resources:
limits:
cpus: "0.3"
memory: "30MB"