add notify script

This commit is contained in:
2021-02-02 14:00:15 +01:00
parent 070bcbd845
commit b9c5896ee1
2 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,7 @@ RUN \
mkdir conf/editable/ssl/certs
COPY httpd-vhosts.conf-template conf/editable/
COPY notify.sh /usr/bin/
VOLUME /usr/local/apache2/conf/editable
VOLUME /usr/local/apache2/logs

6
notify.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
(sleep 5 && /bin/kill -USR1 1) &
exit 0