This commit is contained in:
qiaofeng1227 2024-10-23 15:31:08 +08:00
parent efb9e2fa68
commit bc30f59dc2

View file

@ -295,13 +295,14 @@ download_source_and_checkimage() {
echo "Failed to unzip source package."
exit 1
fi
# install docker
bash /tmp/$source_unzip/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
if [ $? -ne 0 ]; then