Skip to content

Instantly share code, notes, and snippets.

@pbuzulan
Created January 30, 2020 10:40
Show Gist options
  • Save pbuzulan/2e2c2b3d77aa37aaed44913257db3490 to your computer and use it in GitHub Desktop.
Save pbuzulan/2e2c2b3d77aa37aaed44913257db3490 to your computer and use it in GitHub Desktop.
Kibana using docker-compose (v3.4)
LOGGING_QUIET=true
SERVER_NAME=kibana-compose
ELASTICSEARCH_HOSTS=http://localhost:9200/
ELASTICSEARCH_USERNAME=elastic
ELASTICSEARCH_PASSWORD=password
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