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 993ec547d1
All checks were successful
continuous-integration/drone Build is passing
Initial commit
2025-03-16 10:55:51 +01:00

21 lines
685 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 nginx wget libcgi-fast-perl curl && \
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
EXPOSE 80
CMD ["/usr/sbin/munin-node"]