1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-04 10:34:49 +02:00
dockerfiles/collectd/Dockerfile

14 lines
232 B
Docker
Raw Normal View History

2015-06-24 12:48:29 +02:00
#
# Dockerfile for collectd
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U collectd \
&& rm -rf /var/cache/apk/*
COPY ./collectd /etc/collectd
CMD ["collectd", "-f", "-C", "/etc/collectd/collectd.conf"]