Remove healthcheck

The feature was poorly implemented, and offered little value
This commit is contained in:
Jafner 2021-09-24 12:07:35 -07:00
parent eb4d9593b8
commit db196fbb3b
2 changed files with 0 additions and 9 deletions

View File

@ -12,5 +12,4 @@ WORKDIR /usr/local/apache2/htdocs/
RUN mkdir download
RUN chown -R $PUID:$PGID /usr/local/apache2/htdocs
ENV IMG false
HEALTHCHECK --start-period=1m CMD /healthcheck.sh
CMD ["/bin/bash","/init.sh"]

View File

@ -1,8 +0,0 @@
#!/bin/bash
while [ $(cat /status) != "INIT" ]
do
sleep 10;
done
curl --insecure --fail --silent --show-error -I http://localhost:80 > /dev/null || exit 1