From 8bfe028e2c90cd847eacd175381701df00bfe836 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Wed, 22 Jun 2022 15:05:56 +0100 Subject: [PATCH] Make certbot silent --- install-script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-script.sh b/install-script.sh index 0fcfe48..aefe791 100644 --- a/install-script.sh +++ b/install-script.sh @@ -77,7 +77,7 @@ esac if [ $staging != "0" ]; then staging_arg="--staging"; fi docker compose run --rm --entrypoint "\ - certbot certonly --webroot -w /var/www/html \ + certbot certonly --non-interactive --webroot -w /var/www/html \ $staging_arg \ $email_arg \ $domain_args \