commit 7d36e26530a5680363477a2f4af2a5f96c998f8c Author: Ian Babrou Date: Wed Nov 5 11:05:04 2014 +0300 tagged curator 2.0.2 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e3c2b4d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM google/python:2.7 +MAINTAINER Ian Babrou + +RUN pip install elasticsearch-curator==2.0.2 + +ENTRYPOINT ["/usr/bin/python", "/usr/local/lib/python2.7/dist-packages/curator/curator_script.py"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..175db07 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Curator in docker + +This is dockerized version of elasticsearch curator, tool to manage time-based indices. + +## Why this image + +This image keeps up to date with curator releases and has tags in docker registry! + +## Usage + +Image entrypoint is set to curator script, so just run the image: + +``` +docker run --rm bobrik/curator:2.0.2 +``` + +Pick whatever version you need.