You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-10 22:31:28 +02:00
add elastichq
This commit is contained in:
@@ -270,6 +270,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] cachethq/docker
|
- [x] cachethq/docker
|
||||||
- [x] drone/drone
|
- [x] drone/drone
|
||||||
- [x] drupal
|
- [x] drupal
|
||||||
|
- [x] elastichq/elasticsearch-hq
|
||||||
- [x] elk
|
- [x] elk
|
||||||
- [x] flogo/flogo-docker
|
- [x] flogo/flogo-docker
|
||||||
- [x] mher/flower
|
- [x] mher/flower
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
name: example rule
|
name: example rule
|
||||||
|
is_enabled: true
|
||||||
es_host: elasticsearch
|
es_host: elasticsearch
|
||||||
es_port: 9200
|
es_port: 9200
|
||||||
type: frequency
|
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
|
Reference in New Issue
Block a user