From aafd4720b8621ef787e76235e1c66eb1535afe1c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 16 Feb 2021 17:09:47 +0100 Subject: [PATCH] Quiten down apt install --- entrypoint.sh.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index ed0e336..079a91c 100755 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -27,7 +27,7 @@ init_db() { set -eu if ! type mysql > /dev/null 2>&1; then - apt update && apt install -y mariadb-client + apt update && apt install -yqq mariadb-client fi PASSWORD=$(cat /run/secrets/db_password)