Created
April 23, 2020 08:07
-
-
Save shinux/fe4a43ddc1eec62b9de233389b522412 to your computer and use it in GitHub Desktop.
connect remote elasticsearch from docker kibana by bridge mode
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.3' | |
services: | |
kibana: | |
image: docker.elastic.co/kibana/kibana:6.8.3 | |
network_mode: bridge | |
ports: | |
- "5601:5601" | |
environment: | |
ELASTICSEARCH_HOSTS: https://remote-es-host:port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
docker-compose -f kibana-compose.yml up -d