Skip to content

pozgo/docker-elasticHQ

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ElasticHQ in a Docker

Build Status
GitHub Open Issues GitHub Stars GitHub Forks

Docker build

Felling like supporting me in my projects, please use donate button. Thank You!

Docker Image with ElasticHQ. It's using tiny image provided by Alpine. It's over 100Mb smaller than official image.

ElasticHQ Management and Monitoring for Elasticsearch.

Usage

docker run \
    -ti \
    --name elastichq \
    -p 5000:5000 \
    polinux/elastichq

Access WebApp

Go to http://localhost:5000

images/screen.jpg

Build

docker build -t polinux/elastichq .

Docker troubleshooting

Use docker command to see if all required containers are up and running:

docker ps

Check logs of elastichq server container:

docker logs elastichq

Sometimes you might just want to review how things are deployed inside a running container, you can do this by executing a bash shell through docker's exec command:

docker exec -ti elastichq /bin/bash

History of an image and size of layers:

docker history --no-trunc=true polinux/elastichq | tr -s ' ' | tail -n+2 | awk -F " ago " '{print $2}'

Author

Przemyslaw Ozgo