From 7d36e26530a5680363477a2f4af2a5f96c998f8c Mon Sep 17 00:00:00 2001 From: Ian Babrou Date: Wed, 5 Nov 2014 11:05:04 +0300 Subject: [PATCH] tagged curator 2.0.2 --- Dockerfile | 6 ++++++ README.md | 17 +++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md 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.