Klammern weg
This commit is contained in:
parent
c64014da3e
commit
a65096a9bb
1 changed files with 9 additions and 9 deletions
18
Dockerfile
18
Dockerfile
|
@ -17,15 +17,15 @@ RUN (cp /etc/munin/apache24.conf /etc/apache2/sites-available/000-default.conf)
|
||||||
&& (chfn -f 'munin' root) \
|
&& (chfn -f 'munin' root) \
|
||||||
&& (/usr/sbin/a2enmod fcgid)
|
&& (/usr/sbin/a2enmod fcgid)
|
||||||
|
|
||||||
COPY (000-default.conf /etc/apache2/sites-available/000-default.conf)
|
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
|
||||||
COPY (logrotate-munin /etc/logrotate.d/munin)
|
COPY logrotate-munin /etc/logrotate.d/munin
|
||||||
COPY (munin.conf /etc/munin/munin.conf)
|
COPY munin.conf /etc/munin/munin.conf
|
||||||
COPY (ssmtp.conf /etc/ssmtp/ssmtp.conf)
|
COPY ssmtp.conf /etc/ssmtp/ssmtp.conf
|
||||||
COPY (revaliases /etc/ssmtp/revaliases)
|
COPY revaliases /etc/ssmtp/revaliases
|
||||||
COPY (munin_mail.conf /etc/munin/munin-conf.d/munin_mail.conf)
|
COPY munin_mail.conf /etc/munin/munin-conf.d/munin_mail.conf
|
||||||
COPY (slack_munin.sh /usr/local/bin/notify_slack_munin)
|
COPY slack_munin.sh /usr/local/bin/notify_slack_munin
|
||||||
RUN (chmod +x /usr/local/bin/notify_slack_munin)
|
RUN chmod +x /usr/local/bin/notify_slack_munin
|
||||||
COPY (munin_slack.conf /etc/munin/munin-conf.d/munin_slack.conf)
|
COPY munin_slack.conf /etc/munin/munin-conf.d/munin_slack.conf
|
||||||
|
|
||||||
# copy launcher
|
# copy launcher
|
||||||
COPY run.sh /usr/local/bin/run
|
COPY run.sh /usr/local/bin/run
|
||||||
|
|
Reference in a new issue