We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af8437b + 23c6a59 commit db20fe8Copy full SHA for db20fe8
1 file changed
docker-compose.production.yml
@@ -85,4 +85,17 @@ services:
85
environment:
86
- discovery.type=single-node
87
- xpack.security.enabled=false
88
- # Ajustado para KVM
+ # Ajustado para KVM 2 (1GB Heap é seguro)
89
+ - ES_JAVA_OPTS=-Xms1g -Xmx1g
90
+ volumes:
91
+ - prostaff_es_data:/usr/share/elasticsearch/data
92
+ healthcheck:
93
+ test: ["CMD-SHELL", "curl -s http://localhost:9200 >/dev/null || exit 1"]
94
+ interval: 30s
95
+ timeout: 10s
96
+ retries: 5
97
+
98
+volumes:
99
+ prostaff_pg_data:
100
+ prostaff_redis_data:
101
+ prostaff_es_data:
0 commit comments