-
-
Save pbuzulan/2e2c2b3d77aa37aaed44913257db3490 to your computer and use it in GitHub Desktop.
Kibana using docker-compose (v3.4)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOGGING_QUIET=true | |
SERVER_NAME=kibana-compose | |
ELASTICSEARCH_HOSTS=http://localhost:9200/ | |
ELASTICSEARCH_USERNAME=elastic | |
ELASTICSEARCH_PASSWORD=password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.4' | |
services: | |
kibana: | |
network_mode: host | |
container_name: kibana | |
image: docker.elastic.co/kibana/kibana:7.5.2 | |
ports: | |
- 5601:5601 | |
env_file: | |
- .env |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment