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.
docker run \
-ti \
--name elastichq \
-p 5000:5000 \
polinux/elastichq
Go to http://localhost:5000
docker build -t polinux/elastichq .
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}'
Przemyslaw Ozgo