1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-22 22:19:39 +08:00
1Panel-Appstore/elasticsearch/8.18.2/docker-compose.yml
renovate[bot] 07cfcc664a chore(deps): update elasticsearch docker tag to v8.18.2 (#4029)
* chore(deps): update elasticsearch docker tag to v8.18.2

* Update app version [skip ci]

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
2025-05-30 17:51:19 +08:00

31 lines
787 B
YAML

services:
elasticsearch:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:9200"
volumes:
- "./data/data:/usr/share/elasticsearch/data"
- "./data/backup:/usr/share/elasticsearch/backup"
- "./data/conf/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml"
image: elasticsearch:8.18.2
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
environment:
- discovery.type=single-node
- ELASTIC_PASSWORD=${ELASTIC_PASSWORD}
- xpack.security.enabled=${ELASTIC_SECURITY}
- ${P_ES_JAVA_OPTS}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true