| ################################################################################ |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| ################################################################################ |
| services: |
| elasticsearch: |
| image: docker.elastic.co/elasticsearch/elasticsearch:9.4.3 |
| container_name: es-snapshot-analysis |
| environment: |
| - discovery.type=single-node |
| - xpack.security.enabled=false |
| - "ES_JAVA_OPTS=-Xms2g -Xmx2g" |
| - bootstrap.memory_lock=true |
| - cluster.name=snapshot-analysis |
| # Configure snapshot repository path (can contain multiple paths separated by commas) |
| - path.repo=/usr/share/elasticsearch/snapshots_repository |
| ulimits: |
| memlock: |
| soft: -1 |
| hard: -1 |
| volumes: |
| - ./snapshots_repository:/usr/share/elasticsearch/snapshots_repository |
| - es-data:/usr/share/elasticsearch/data |
| ports: |
| - "9200:9200" |
| - "9300:9300" |
| networks: |
| - es-kibana-net |
| healthcheck: |
| test: ["CMD-SHELL", "curl -f http://localhost:9200/_cluster/health || exit 1"] |
| interval: 10s |
| timeout: 10s |
| retries: 30 |
| |
| kibana: |
| image: docker.elastic.co/kibana/kibana:9.1.3 |
| container_name: kibana-snapshot-analysis |
| environment: |
| - ELASTICSEARCH_HOSTS=http://elasticsearch:9200 |
| - xpack.security.enabled=false |
| - xpack.monitoring.ui.container.elasticsearch.enabled=true |
| ports: |
| - "5601:5601" |
| networks: |
| - es-kibana-net |
| depends_on: |
| elasticsearch: |
| condition: service_healthy |
| |
| volumes: |
| es-data: |
| driver: local |
| |
| networks: |
| es-kibana-net: |
| driver: bridge |
| |