Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkoertgen/hello.docker.els
An quick experiment to provision ElasticSearch using vagrant and docker.
https://github.com/mkoertgen/hello.docker.els
Last synced: 28 days ago
JSON representation
An quick experiment to provision ElasticSearch using vagrant and docker.
- Host: GitHub
- URL: https://github.com/mkoertgen/hello.docker.els
- Owner: mkoertgen
- License: mit
- Created: 2015-04-13T11:55:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-12T19:56:30.000Z (over 9 years ago)
- Last Synced: 2024-10-14T23:43:48.166Z (2 months ago)
- Size: 121 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello.docker.els
A quick experiment to provision [ElasticSearch](https://registry.hub.docker.com/_/elasticsearch/) using vagrant and docker.
## Prerequisites
You should have installed
- [VirtualBox](https://www.virtualbox.org/) (v4.3.26)
- [vagrant](https://www.vagrantup.com/) (v1.7.2)## Proxy configuration
When working in a proxy environment, be sure to
- install the [vagrant-proxyconf](https://github.com/tmatilai/vagrant-proxyconf) plugin,
- configure proxy settings in `$HOME/.vagrant.d/Vagrantfile` and
- include `/var/run/docker.sock` in your no-proxy settings as suggested in [vagrant-proxyconf/issues/97](https://github.com/tmatilai/vagrant-proxyconf/issues/97#issuecomment-88661401)## How to use
Just go `vagrant up` and after vagrant and docker have done their magic you should be able to access a running elasticsearch instance at [http://localhost:9200](http://localhost:9200)
{
"status" : 200,
"name" : "Kleinstocks",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "1.4.4",
"build_hash" : "c88f77ffc81301dfa9dfd81ca2232f09588bd512",
"build_timestamp" : "2015-02-19T13:05:36Z",
"build_snapshot" : false,
"lucene_version" : "4.10.3"
},
"tagline" : "You Know, for Search"
}