docker-certbot-nginx/run.sh

8 lines
144 B
Bash
Raw Normal View History

#!/bin/sh
if [ -z "$CERTBOT_DNS_PLUGIN" ]; then
echo "No DNS plugin set, continuing"
else
pip install $CERTBOT_DNS_PLUGIN
fi
certbot $@