3cd7ecc138
Change-Id: Ida4939fd573df09f3b799e3ee5655976e7ec1bf7
12 lines
321 B
Docker
12 lines
321 B
Docker
FROM registry.centos.org/centos:8
|
|
|
|
RUN dnf update -y && \
|
|
dnf clean all && \
|
|
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
|
dnf install -y centos-release-opstools && \
|
|
dnf install -y collectd
|
|
|
|
ADD config/collectd.conf /etc/collectd.conf
|
|
|
|
CMD ["collectd", "-f"]
|