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/elastichqGo to http://localhost:5000
docker build -t polinux/elastichq .Use docker command to see if all required containers are up and running:
docker psCheck logs of elastichq server container:
docker logs elastichqSometimes 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/bashHistory 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
