parent
69e411f70a
commit
68a4bf3542
@ -1,12 +1,10 @@
|
|||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Pull the elasticsearch image
|
1. Build the Docker image
|
||||||
```bash
|
```bash
|
||||||
docker pull docker.elastic.co/elasticsearch/elasticsearch:8.2.0
|
docker build -t registry.entgra.io/entgra-elasticsearch:8.2.0-entgra-v2 -f Dockerfile .
|
||||||
```
|
```
|
||||||
Note: Change the required image version name or tag in the Dockerfile.
|
|
||||||
|
|
||||||
3. Build the Docker image
|
2. docker-compose up -d
|
||||||
```bash
|
3. docker exec -it $(docker ps -aq -n 1) /bin/bash
|
||||||
docker build -t elasticsearch:8.2.0-entgra-v1 .
|
4. docker-compose down
|
||||||
```
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Pull the filebeat image
|
1. Build the Docker image
|
||||||
```bash
|
```bash
|
||||||
docker pull docker.elastic.co/beats/filebeat:8.2.0
|
docker build -t registry.entgra.io/entgra-filebeat:8.2.0-entgra-v2 .
|
||||||
```
|
```
|
||||||
Note: Change the required image version name or tag in the Dockerfile.
|
|
||||||
|
|
||||||
3. Build the Docker image
|
2. docker-compose up -d
|
||||||
```bash
|
3. docker exec -it $(docker ps -aq -n 1) /bin/bash
|
||||||
docker build -t filebeat:8.2.0-entgra-v1 .
|
4. docker-compose down
|
||||||
```
|
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
# Copyright (c) 2018 - 2024, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Entgra (Pvt) Ltd. 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.
|
||||||
|
|
||||||
FROM docker.elastic.co/kibana/kibana:8.2.0
|
FROM docker.elastic.co/kibana/kibana:8.2.0
|
||||||
|
|
||||||
COPY kibana.yml /usr/share/kibana/kibana.yml
|
COPY kibana.yml /usr/share/kibana/kibana.yml
|
@ -1,12 +1,11 @@
|
|||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Pull the kibana image
|
1. Build the Docker image
|
||||||
```bash
|
```bash
|
||||||
docker pull docker.elastic.co/kibana/kibana:8.2.0
|
docker build -t registry.entgra.io/entgra-kibana:8.2.0-entgra-v2 .
|
||||||
```
|
```
|
||||||
Note: Change the required image version name or tag in the Dockerfile.
|
|
||||||
|
|
||||||
3. Build the Docker image
|
2. docker-compose up -d
|
||||||
```bash
|
3. docker exec -it $(docker ps -aq -n 1) /bin/bash
|
||||||
docker build -t kibana:8.2.0-entgra-v1 .
|
4. docker-compose down
|
||||||
```
|
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
# Copyright (c) 2018 - 2024, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
#
|
||||||
|
# Entgra (Pvt) Ltd. 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.
|
||||||
|
|
||||||
FROM docker.elastic.co/logstash/logstash:8.2.0
|
FROM docker.elastic.co/logstash/logstash:8.2.0
|
||||||
|
|
||||||
COPY logstash.conf /usr/share/logstash/pipeline/logstash.conf
|
COPY logstash.conf /usr/share/logstash/pipeline/logstash.conf
|
@ -1,12 +1,11 @@
|
|||||||
## Instructions
|
## Instructions
|
||||||
|
|
||||||
1. Pull the logstash image
|
1. Build the Docker image
|
||||||
```bash
|
```bash
|
||||||
docker pull docker.elastic.co/logstash/logstash:8.2.0
|
docker build -t registry.entgra.io/entgra-logstash:8.2.0-entgra-v2 .
|
||||||
```
|
```
|
||||||
Note: Change the required image version name or tag in the Dockerfile.
|
|
||||||
|
|
||||||
3. Build the Docker image
|
2. docker-compose up -d
|
||||||
```bash
|
3. docker exec -it $(docker ps -aq -n 1) /bin/bash
|
||||||
docker build -t logstash:8.2.0-entgra-v1 .
|
4. docker-compose down
|
||||||
```
|
|
||||||
|
Loading…
Reference in new issue