Browse Source

Changed elasticsearch image url (#4897)

### What problem does this PR solve?

Changed elasticsearch image url to speed up image downloading. 

### Type of change

- [x] Refactoring
tags/v0.17.0
Zhichang Yu 8 months ago
parent
commit
a1cf792245
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      docker/docker-compose-base.yml
  2. 1
    1
      helm/templates/elasticsearch.yaml

+ 1
- 1
docker/docker-compose-base.yml View File

container_name: ragflow-es-01 container_name: ragflow-es-01
profiles: profiles:
- elasticsearch - elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION}
image: elasticsearch:${STACK_VERSION}
volumes: volumes:
- esdata01:/usr/share/elasticsearch/data - esdata01:/usr/share/elasticsearch/data
ports: ports:

+ 1
- 1
helm/templates/elasticsearch.yaml View File

command: ["sysctl", "-w", "vm.max_map_count=262144"] command: ["sysctl", "-w", "vm.max_map_count=262144"]
containers: containers:
- name: elasticsearch - name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:{{ .Values.env.STACK_VERSION }}
image: elasticsearch:{{ .Values.env.STACK_VERSION }}
envFrom: envFrom:
- secretRef: - secretRef:
name: {{ include "ragflow.fullname" . }}-env-config name: {{ include "ragflow.fullname" . }}-env-config

Loading…
Cancel
Save