This repository has been archived on 2025-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
munin-docker/Dockerfile
Kevin Alberts ca0110fccb
All checks were successful
continuous-integration/drone/push Build is passing
Back to debian base
2025-03-16 11:53:51 +01:00

19 lines
678 B
Docker

FROM debian:12
LABEL org.opencontainers.image.authors="me@kurocon.nl"
LABEL org.opencontainers.image.source="https://git.kurocon.nl/KuroNET/munin-docker"
LABEL org.opencontainers.image.description="Munin image with Docker binaries"
RUN apt-get update -qq && RUNLEVEL=1 DEBIAN_FRONTEND=noninteractive \
apt-get install -y -qq cron munin wget curl nginx libcgi-fast-perl && \
mkdir -p /var/run/munin && chown -R munin:munin /var/run/munin && \
echo "includedir /etc/munin/munin-conf.d" > /etc/munin/munin.conf
VOLUME /var/lib/munin
VOLUME /var/log/munin
VOLUME /var/run/munin
VOLUME /var/cache/munin
VOLUME /etc/munin/munin.conf.d
CMD ["nginx" "-g" "daemon off;"]