add elastichq

This commit is contained in:
kev 2019-11-01 09:14:24 +08:00
parent dcf5a2295e
commit 6016ee4b05
4 changed files with 23 additions and 0 deletions

View File

@ -270,6 +270,7 @@ A collection of delicious docker recipes.
- [x] cachethq/docker
- [x] drone/drone
- [x] drupal
- [x] elastichq/elasticsearch-hq
- [x] elk
- [x] flogo/flogo-docker
- [x] mher/flower

View File

@ -1,4 +1,5 @@
name: example rule
is_enabled: true
es_host: elasticsearch
es_port: 9200
type: frequency

8
elastichq/README.md Normal file
View File

@ -0,0 +1,8 @@
ElasticHQ
=========
[ElasticHQ][1] serves as a monitoring and management platform for Elasticsearch
clusters. It is freely available and distributed under the Apache Software
License.
[1]: http://docs.elastichq.org/installation.html#running-with-docker

View File

@ -0,0 +1,13 @@
version: "3.7"
services:
elastichq:
image: elastichq/elasticsearch-hq
ports:
- "5000:5000"
volumes:
- ./data:/data
environment:
- SQLALCHEMY_DATABASE_URI=/data/elastichq.db
restart: unless-stopped