run
This commit is contained in:
parent
5da0fba6e6
commit
acaaec6e96
1 changed files with 7 additions and 6 deletions
13
Dockerfile
13
Dockerfile
|
@ -22,6 +22,9 @@ RUN apt-get update && \
|
|||
&& apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
|
||||
|
||||
COPY munin_stats /etc/munin/plugins/munin_stats
|
||||
COPY munin_update /etc/munin/plugins/munin_update
|
||||
|
||||
RUN (cp /etc/munin/apache24.conf /etc/apache2/sites-available/000-default.conf) && \
|
||||
(sed -i 's/^Alias.*/Alias \/ \/var\/cache\/munin\/www\//g' /etc/apache2/sites-available/000-default.conf) && \
|
||||
(sed -i 's/Allow from .*/Satisfy Any/g' /etc/apache2/sites-available/000-default.conf) && \
|
||||
|
@ -29,9 +32,10 @@ RUN (cp /etc/munin/apache24.conf /etc/apache2/sites-available/000-default.conf)
|
|||
(mkdir -p /var/run/munin && \
|
||||
chown -R munin:munin /var/run/munin) && \
|
||||
(chfn -f 'munin' root) && \
|
||||
(/usr/sbin/a2enmod fcgid)
|
||||
|
||||
RUN rm -rf /etc/munin/plugins
|
||||
(/usr/sbin/a2enmod fcgid) \
|
||||
rm -rf /etc/munin/plugins \
|
||||
chmod +x /etc/munin/plugins/munin_stats \
|
||||
chmod +x /etc/munin/plugins/munin_update
|
||||
|
||||
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
|
||||
COPY logrotate-munin /etc/logrotate.d/munin
|
||||
|
@ -40,9 +44,6 @@ COPY ssmtp.conf /etc/ssmtp/ssmtp.conf
|
|||
COPY revaliases /etc/ssmtp/revaliases
|
||||
COPY munin_mail.conf /etc/munin/munin-conf.d/munin_mail.conf
|
||||
|
||||
COPY munin_stats /etc/munin/plugins/munin_stats
|
||||
COPY munin_update /etc/munin/plugins/munin_update
|
||||
RUN chmod +x /etc/munin/plugins/munin_stats ; chmod +x /etc/munin/plugins/munin_update
|
||||
# copy launcher
|
||||
COPY run.sh /usr/local/bin/run
|
||||
RUN chmod +x /usr/local/bin/run
|
||||
|
|
Reference in a new issue