diff --git a/.env b/.env index 20900f6..2b8c3ec 100644 --- a/.env +++ b/.env @@ -1,5 +1,5 @@ COMPOSE_PROJECT_NAME=elastic -ELK_VERSION=7.11.1 +ELK_VERSION=7.12.0 #----------- Resources --------------------------# ELASTICSEARCH_HEAP=1024m @@ -20,8 +20,9 @@ LOGSTASH_PORT=8080 #----------- Credientals ------------------------# # Username & Password for Admin Elasticsearch cluster. # This is used to set the password at setup, and used by others to connect to Elasticsearch at runtime. +# USERNAME cannot be changed! It is set here for parmeterization only. ELASTIC_USERNAME=elastic -ELASTIC_PASSWORD=changeme +ELASTIC_PASSWORD=changme AWS_ACCESS_KEY_ID=nottherealid AWS_SECRET_ACCESS_KEY=notherealsecret diff --git a/Makefile b/Makefile index 4851ce3..633e4f6 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,9 @@ all: ## Start Elk and all its component (ELK, Monitoring, and Tools). elk: ## Start ELK. docker-compose up -d --build +up: + @make elk + monitoring: ## Start ELK Monitoring. @docker-compose ${COMPOSE_MONITORING} up -d --build ${ELK_MONITORING} diff --git a/README.md b/README.md index 26bdbb1..4aa2a22 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
-
+
@@ -29,7 +29,7 @@ Elastic Stack (**ELK**) Docker Composition, preconfigured with **Security**, **M
Based on [Official Elastic Docker Images](https://www.docker.elastic.co/)
-Stack Version: [7.11.1](https://www.elastic.co/blog/elastic-stack-7-11-1-released)
+Stack Version: [7.12.0](https://www.elastic.co/blog/elastic-stack-7-12-0-released)
> You can change Elastic Stack version by setting `ELK_VERSION` in `.env` file and rebuild your images. Any version >= 7.0.0 is compatible with this template.
### Main Features 📜
@@ -171,7 +171,7 @@ $ make prune
* Some Configuration are parameterized in the `.env` file.
* `ELASTIC_PASSWORD`, user `elastic`'s password (default: `changeme` _pls_).
- * `ELK_VERSION` Elastic Stack Version (default: `7.11.1`)
+ * `ELK_VERSION` Elastic Stack Version (default: `7.12.0`)
* `ELASTICSEARCH_HEAP`, how much Elasticsearch allocate from memory (default: 1GB -good for development only-)
* `LOGSTASH_HEAP`, how much Logstash allocate from memory.
* Other configurations which their such as cluster name, and node name, etc.
diff --git a/kibana/Dockerfile b/kibana/Dockerfile
index 9acb332..2420e9d 100644
--- a/kibana/Dockerfile
+++ b/kibana/Dockerfile
@@ -4,9 +4,9 @@ ARG ELK_VERSION
FROM docker.elastic.co/kibana/kibana:${ELK_VERSION}
ARG ELK_VERSION
-# Add healthcheck
-COPY scripts/docker-healthcheck .
-HEALTHCHECK CMD sh ./docker-healthcheck
+## Add healthcheck
+#COPY scripts/docker-healthcheck .
+#HEALTHCHECK CMD sh ./docker-healthcheck
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install