unrlab / es-client
library for communication with elastic search server
dev-master
2018-06-21 18:48 UTC
Requires
- php: >=7
- guzzlehttp/guzzle: ^6.2
- jms/serializer: ^1.7
- monolog/monolog: ^1.22
- psr/http-message: ^1.0
- psr/log: ^1.0
Requires (Dev)
- phpmd/phpmd: ^2.6
- phpunit/phpunit: ^6.1
- symfony/var-dumper: ^3.3
This package is not auto-updated.
Last update: 2025-01-05 04:10:08 UTC
README
Running an elastic search docker container :
docker run -p 9200:9200 -e "http.host=http://127.0.0.1" -d --name=es -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.4.0
From the official elastic search site : https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html
for helping you can run a kibana container :
docker run -d --name=es_kibana -p 5601:5601 -e ELASTICSEARCH_URL=http://172.17.0.2:9200 -e ELASTICSEARCH_PASSWORD=changeme -e ELASTICSEARCH_USERNAME=elastic docker.elastic.co/kibana/kibana:5.4.0