Update docker-installer.sh

This commit is contained in:
qiaofeng1227 2021-09-18 17:23:42 +08:00 committed by GitHub
parent 7a86c84db7
commit fb585443c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,6 +55,7 @@ do
esac
shift
done
[ ! -n "$repo_name" ] && exit 1
@ -150,7 +151,7 @@ install_docker_compose(){
save_images(){
sudo rm -rf /tmp/docker-$repo_name
sudo git clone https://github.com/Websoft9/docker-$repo_name.git /tmp/docker-$repo_name
sudo git clone https://github.com/Websoft9/docker-$repo_name.git /tmp/docker-$repo_name || sudo git clone https://github.com.cnpmjs.org/Websoft9/docker-$repo_name.git /tmp/docker-$repo_name
sudo docker rmi `docker images -aq` -f &>/dev/null || true
# Rename compose and env file name
@ -170,7 +171,7 @@ save_images(){
installation(){
sudo rm -rf $install_dir
sudo mkdir -p $install_dir /credentials 1>/dev/null 2>&1 && cd $install_dir
sudo git clone https://github.com/Websoft9/docker-$repo_name.git $install_dir
sudo git clone https://github.com/Websoft9/docker-$repo_name.git $install_dir || sudo git clone https://github.com.cnpmjs.org/Websoft9/docker-$repo_name.git $install_dir
# Rename compose and env file name
cd $install_dir
@ -513,4 +514,4 @@ if [ $make_package = true ]; then
save_images
add_install_script
make_package
fi
fi