mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 17:56:53 +02:00
add elastichq
This commit is contained in:
parent
dcf5a2295e
commit
6016ee4b05
@ -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
|
||||
|
@ -1,4 +1,5 @@
|
||||
name: example rule
|
||||
is_enabled: true
|
||||
es_host: elasticsearch
|
||||
es_port: 9200
|
||||
type: frequency
|
||||
|
8
elastichq/README.md
Normal file
8
elastichq/README.md
Normal 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
|
13
elastichq/docker-compose.yml
Normal file
13
elastichq/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user