90DaysOfDevOps/Days/Monitoring/Elastic Stack/extensions/curator/Dockerfile

18 lines
438 B
Docker
Raw Normal View History

2022-03-28 14:11:09 +07:00
FROM bitnami/elasticsearch-curator:5.8.1
USER root
RUN install_packages cron && \
echo \
'* * * * *' \
root \
LC_ALL=C.UTF-8 LANG=C.UTF-8 \
/opt/bitnami/python/bin/curator \
--config=/usr/share/curator/config/curator.yml \
/usr/share/curator/config/delete_log_files_curator.yml \
'>/proc/1/fd/1' '2>/proc/1/fd/2' \
>>/etc/crontab
ENTRYPOINT ["cron"]
2022-04-08 03:28:42 +07:00
.md["-f", "-L8"]