-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
130 lines (124 loc) · 2.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
version: '3.9'
name: 'rinha-backend'
services:
api-1:
image: 'joaovertelo/rinha-backend-micronaut:1.0'
restart: on-failure
build:
context: .
hostname: api-1
environment:
- SERVER_PORT=8080
- DATABASE_URL=jdbc:postgresql://postgres-db:5432/postgres
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=postgres
- REDIS_HOST=redis://cache
depends_on:
cache:
condition: service_healthy
postgres-db:
condition: service_healthy
# - cache
ulimits:
nofile:
soft: 1000000
hard: 1000000
deploy:
resources:
limits:
cpus: '1'
memory: '0.7GB'
networks:
- app-network
api-2:
image: 'joaovertelo/rinha-backend-micronaut:1.0'
restart: on-failure
build:
context: .
hostname: api-2
environment:
- SERVER_PORT=8080
- DATABASE_URL=jdbc:postgresql://postgres-db:5432/postgres
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=postgres
- REDIS_HOST=redis://cache
depends_on:
cache:
condition: service_healthy
postgres-db:
condition: service_healthy
# - cache
ulimits:
nofile:
soft: 1000000
hard: 1000000
deploy:
resources:
limits:
cpus: '1'
memory: '0.7GB'
networks:
- app-network
nginx:
image: nginx:latest
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- api-1
- api-2
ports:
- "9999:9999"
networks:
- app-network
deploy:
resources:
limits:
cpus: '0.3'
memory: '0.1GB'
cache:
hostname: cache
image: redis:latest
ports:
- '6379:6379'
deploy:
resources:
limits:
cpus: '0.1'
memory: '0.1GB'
environment:
- ALLOW_EMPTY_PASSWORD=yes
- REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
networks:
- app-network
postgres-db:
image: postgres:latest
command: 'postgres -c max_connections=600' # -c shared_buffers=256MB -c synchronous_commit=off -c fsync=off -c full_page_writes=off
container_name: rinha-backend-micronaut-db
user: postgres
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=postgres
healthcheck:
test: [ "CMD-SHELL", "pg_isready" ]
interval: 3s
timeout: 5s
retries: 10
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 60s
resources:
limits:
cpus: '1'
memory: '1.4GB'
volumes:
- ./sql/create_tables.sql:/docker-entrypoint-initdb.d/create_tables.sql
networks:
- app-network
networks:
app-network: