Last active
August 29, 2015 14:09
Revisions
-
logicalparadox revised this gist
Nov 19, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ - clone this gist - `fig up -d` - navigate to [localhost:5601](http://localhost:5601) (or the ip of boot2docker) ### Dockerfiles -
logicalparadox created this gist
Nov 19, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ FROM logicalparadox/kibana:4.0.0-BETA2 ADD run.sh /opt/ RUN chmod +X /opt/run.sh CMD [ "/opt/run.sh" ] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ ### Requirements - docker v1.3 - fig v1.0 ### Instructions - clone this gist - `fig up -d` - navigate to [localhost:5601](http://localhost:5601) ### Dockerfiles - logicalparadox/elasticsearch - [dockerfile](https://github.com/logicalparadox/.dockerfiles/tree/master/elasticsearch/stable) - [docker.io](https://registry.hub.docker.com/u/logicalparadox/elasticsearch/) - logicalparadox/kibana - [dockerfile](https://github.com/logicalparadox/.dockerfiles/tree/master/kibana/unstable) - [docker.io](https://registry.hub.docker.com/u/logicalparadox/kibana/) 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ elasticsearch: image: logicalparadox/elasticsearch:1.4.0 ports: - "9200:9200" - "9300:9300" kibana: build: . links: - elasticsearch ports: - "5601:5601" 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #!/bin/bash ELASTICSEARCH_HOST=$ELASTICSEARCH_1_PORT_9200_TCP_ADDR ELASTICSEARCH_PORT=$ELASTICSEARCH_1_PORT_9200_TCP_PORT cat > /opt/kibana/config/kibana.yml << EOL port: 5601 host: "0.0.0.0" elasticsearch: "http://${ELASTICSEARCH_HOST}:${ELASTICSEARCH_PORT}" kibanaIndex: ".kibana" defaultAppId: "discover" request_timeout: 60 shard_timeout: 30000 verifySSL: false EOL exec /opt/kibana/bin/kibana