Files
tp/scripts/renew.sh
T

6 lines
178 B
Bash
Executable File

#!/bin/bash
docker compose down nginx
certbot certonly --standalone --noninteractive --agree-tos --email ${EMAIL} -d ${DOMAINS} --keep-until-expiring
docker compose up -d nginx