mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-09-02 20:01:28 +00:00
Add Dockerfile for building an alpine image with collectd. Published an image to dockerhub and reference it in collectd.yaml Signed-off-by: David Lyle <dklyle0@gmail.com>
6 lines
81 B
Docker
6 lines
81 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && apk add collectd
|
|
|
|
CMD [ "collectd", "-f" ]
|