cloudron-setup: docker images are downloaded as part of installer now

This commit is contained in:
Girish Ramakrishnan
2023-08-21 22:26:58 +05:30
parent 4b6d4fe6be
commit e833b859eb

View File

@@ -209,7 +209,7 @@ if ! $curl -sL "${sourceTarballUrl}" | tar -zxf - -C "${box_src_tmp_dir}"; then
exit 1
fi
echo -n "=> Installing base dependencies and downloading docker images (this takes some time) ..."
echo -n "=> Installing base dependencies (this takes some time) ..."
init_ubuntu_script=$(test -f "${box_src_tmp_dir}/scripts/init-ubuntu.sh" && echo "${box_src_tmp_dir}/scripts/init-ubuntu.sh" || echo "${box_src_tmp_dir}/baseimage/initializeBaseUbuntuImage.sh")
if ! /bin/bash "${init_ubuntu_script}" &>> "${LOG_FILE}"; then
echo "Init script failed. See ${LOG_FILE} for details"