mirror of
https://github.com/clearlinux/cloud-native-setup.git
synced 2026-08-28 13:25:39 +00:00
9c01cbfacb
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" ]
|