#!/bin/sh trap exit TERM if [ -n "${CERTBOT_DOMAINS}" ]; then sleep 5 echo "registering domains..." certbot --nginx -n --agree-tos \ -m "${CERTBOT_EMAIL}" \ -d "${CERTBOT_DOMAINS}" while :; do echo "renewing domains..." certbot --nginx -n renew sleep 12h & wait $! done & else echo "skipping certbot due to no domains!" fi & exec "$@"