From 48430039dc89962d4216ff4d5ab5539330fc252c Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 28 Dec 2021 00:00:24 +0100 Subject: [PATCH] correct --- firefly_iii/rootfs/scripts/99-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firefly_iii/rootfs/scripts/99-run.sh b/firefly_iii/rootfs/scripts/99-run.sh index 9196f8344..ab89f9f85 100644 --- a/firefly_iii/rootfs/scripts/99-run.sh +++ b/firefly_iii/rootfs/scripts/99-run.sh @@ -64,8 +64,8 @@ mariadb_addon) apt-get clean bashio::log.info "Creating database for Firefly-iii if required" mysql \ - -u "${username}" -p"${password}" \ - -h "${host}" -P "${port}" \ + -u "${DB_USERNAME}" -p"${DB_PASSWORD}" \ + -h "${DB_HOST}" -P "${DB_PORT}" \ -e "CREATE DATABASE IF NOT EXISTS \`firefly\` ;" ;;