Skip to content

Commit ca8f662

Browse files
authored
fix: revert ES_VERSION to v7 for v1.28.x compatibility (#317)
The v1.28.x auto-setup image only contains v7 ES schema files (cluster_settings_v7.json, index_template_v7.json). Setting ES_VERSION=v8 causes auto-setup to look for cluster_settings_v8.json which doesn't exist. ES 8.5.0 is backwards-compatible with v7 API calls, so using ES_VERSION=v7 with ELASTICSEARCH_VERSION=8.5.0 is the correct configuration for v1.28.x. Made-with: Cursor
1 parent f693a4b commit ca8f662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
- POSTGRES_SEEDS=postgresql
4343
- ENABLE_ES=true
4444
- ES_SEEDS=elasticsearch
45-
- ES_VERSION=v8
45+
- ES_VERSION=v7
4646
image: ${IMAGE_REPO}/auto-setup:${IMAGE_TAG}
4747
networks:
4848
- temporal-network

0 commit comments

Comments
 (0)