Sanjay Chari a6d8dad70b Shifting from redhat registry to centos registry for collectd image
Change-Id: If37d13bf881c68ab43d616a2f8559e8789801f49
2021-07-14 11:07:47 +05:30

12 lines
321 B
Docker

FROM registry.centos.org/centos:7
RUN yum update -y && \
yum clean all && \
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \
yum install -y centos-release-opstools && \
yum install -y collectd
ADD config/collectd.conf /etc/collectd.conf
CMD ["collectd", "-f"]