mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-24 00:20:24 +00:00
websoft9
This commit is contained in:
parent
c7ac405da7
commit
f32fcc4d05
1 changed files with 6 additions and 6 deletions
|
@ -295,6 +295,12 @@ download_source_and_checkimage() {
|
|||
echo "Failed to unzip source package."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
bash /tmp/$source_zip/install/install_docker.sh
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "install_docker failed with error $?. Exiting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd /tmp/$source_unzip/docker
|
||||
docker compose pull
|
||||
|
@ -489,12 +495,6 @@ log_path="$install_path/install.log"
|
|||
check_ports $http_port $https_port $port | tee -a $log_path
|
||||
install_tools | tee -a $log_path
|
||||
|
||||
bash $install_path/install/install_docker.sh | tee -a $log_path
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "install_docker failed with error $?. Exiting."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
download_source_and_checkimage | tee -a $log_path
|
||||
|
||||
install_backends | tee -a $log_path
|
||||
|
|
Loading…
Reference in a new issue