mirror of
https://github.com/peasead/elastic-container
synced 2026-06-08 16:43:23 +00:00
b03392cce8
resolve https://discuss.elastic.co/t/kibana-8-17-6-8-18-1-or-9-0-1-security-update-esa-2025-07/377868
47 lines
988 B
Bash
47 lines
988 B
Bash
# Local Kibana URL
|
|
LOCAL_KBN_URL=https://127.0.0.1:5601
|
|
|
|
# Local ES URL
|
|
LOCAL_ES_URL=https://127.0.0.1:9200
|
|
|
|
# Username for Kibana
|
|
ELASTIC_USERNAME=elastic
|
|
|
|
# Password for the 'elastic' user (at least 6 characters)
|
|
ELASTIC_PASSWORD=changeme
|
|
|
|
# Password for the 'kibana_system' user (at least 6 characters)
|
|
KIBANA_PASSWORD=changeme
|
|
|
|
# Version of Elastic products
|
|
STACK_VERSION=9.0.1
|
|
# Testing pre-releases? Use the SNAPSHOT option below:
|
|
# STACK_VERSION=8.11.0-SNAPSHOT
|
|
|
|
# Bulk Enable Detection Rules by OS
|
|
LinuxDR=0
|
|
|
|
WindowsDR=0
|
|
|
|
MacOSDR=0
|
|
|
|
# Set the cluster name
|
|
CLUSTER_NAME=elastic-container-project
|
|
|
|
# Set to "basic" or "trial" to automatically start the 30-day trial
|
|
LICENSE=basic
|
|
#LICENSE=trial
|
|
|
|
# Port to expose Elasticsearch HTTP API to the host
|
|
ES_PORT=9200
|
|
#ES_PORT=127.0.0.1:9200
|
|
|
|
# Port to expose Kibana to the host
|
|
KIBANA_PORT=5601
|
|
|
|
# Port to expose Fleet to the host
|
|
FLEET_PORT=8220
|
|
|
|
# Increase or decrease based on the available host memory (in bytes)
|
|
MEM_LIMIT=2147483648
|