Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jguido/es_client
Elastic search client written in PHP 7.1
https://github.com/jguido/es_client
elasticsearch-client gplv3 php71 tdd
Last synced: 5 days ago
JSON representation
Elastic search client written in PHP 7.1
- Host: GitHub
- URL: https://github.com/jguido/es_client
- Owner: jguido
- License: gpl-3.0
- Created: 2017-06-06T00:47:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-21T18:48:03.000Z (over 6 years ago)
- Last Synced: 2024-12-02T20:45:17.335Z (2 months ago)
- Topics: elasticsearch-client, gplv3, php71, tdd
- Language: PHP
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ES_Client
[![Build Status](https://travis-ci.org/jguido/ES_Client.svg?branch=master)](https://travis-ci.org/jguido/ES_Client) [![SensioLabsInsight](https://insight.sensiolabs.com/projects/ef784529-0c3f-405f-ba45-323e9a1f70c6/mini.png)](https://insight.sensiolabs.com/projects/ef784529-0c3f-405f-ba45-323e9a1f70c6)
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](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
```