mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-10 21:16:55 +08:00
115e37dd13
* chore(deps): update elasticsearch docker tag to v7.17.22 * 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>
31 lines
788 B
YAML
31 lines
788 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:7.17.22
|
|
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
|