1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

add cron to renew cert

This commit is contained in:
Jonny McCullagh 2022-06-22 13:57:46 +01:00
parent a0f6846afc
commit c33cb99c06
2 changed files with 5 additions and 1 deletions

View file

@ -1,7 +1,7 @@
FROM node:14-slim as build
# install node-gyp dependencies
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils g++ make python
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python
# add pin script
WORKDIR /

View file

@ -4,6 +4,10 @@ redis-server --requirepass $REDIS_PASSWORD &
/docker-entrypoint.sh /opt/couchdb/bin/couchdb &
/etc/init.d/nginx restart
if [[ ! -z "${CUSTOM_DOMAIN}" ]]; then
# Add monthly cron job to renew certbot certificate
echo -n "* * 2 * * root exec /app/letsencrypt/certificate-renew.sh ${CUSTOM_DOMAIN}" >> /etc/cron.d/certificate-renew
chmod +x /etc/cron.d/certificate-renew
# Request the certbot certificate
/app/letsencrypt/certificate-request.sh ${CUSTOM_DOMAIN}
fi