linuxtool/Config/Docker/Installs/xboard.sh

23 lines
480 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
declare install_path=$1
declare service_port=$2
cd $install_path
declare project_name=$(basename $install_path)
cd ..
rm -rf "$project_name"
git clone -b docker-compose --depth 1 https://github.com/cedar2025/Xboard
if [[ "$project_name" != Xboard ]];then
mv Xboard "$project_name"
fi
cd "$install_path"
docker compose run -it --rm xboard php artisan xboard:install
docker compose up -d > /dev/null
sleep 5
echo "网站端口默认7001记得防火墙放行"