mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-11-07 22:17:37 +00:00
16 lines
418 B
YAML
16 lines
418 B
YAML
|
|
services:
|
||
|
|
elasticsearch:
|
||
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:8.7.0
|
||
|
|
container_name: es-test
|
||
|
|
ports:
|
||
|
|
- 9200:9200
|
||
|
|
- 9300:9300
|
||
|
|
environment:
|
||
|
|
- xpack.security.enabled=false
|
||
|
|
- discovery.type=single-node
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 30s
|
||
|
|
retries: 3
|