mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d7a36f5b04
* bug:fix recent page hiding last item on scroll #1468 (#2411) * dev: hub compose file update (#2376) (#2444) (#2445) * docker-compose-hub modified for envs * bug:fix recent page hiding last item on scroll #1468 (#2411) * wip * fixed the AMD build on ARM --------- Co-authored-by: Manish Gupta <59428681+manishg3@users.noreply.github.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> * selfhosting fixes * wip * checking selfhost * checking selfhost * selfhost * selfhosting script fix * wip * self hosting fixes * folder structure modified * replica config * self host specific version * fix * fix * fixes * docker compose modifications * fixed install.sh * fixed install.sh * install.sh modified --------- Co-authored-by: Prashant Indurkar <32466796+PrashantIndurkar@users.noreply.github.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
112 lines
2.7 KiB
Bash
Executable File
112 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
BRANCH=${BRANCH:-master}
|
|
SCRIPT_DIR=$PWD
|
|
PLANE_INSTALL_DIR=$PWD/plane-app
|
|
mkdir -p $PLANE_INSTALL_DIR/archive
|
|
|
|
function install(){
|
|
echo
|
|
echo "Installing on $PLANE_INSTALL_DIR"
|
|
download
|
|
}
|
|
function download(){
|
|
cd $SCRIPT_DIR
|
|
TS=$(date +%s)
|
|
if [ -f "$PLANE_INSTALL_DIR/docker-compose.yaml" ]
|
|
then
|
|
mv $PLANE_INSTALL_DIR/docker-compose.yaml $PLANE_INSTALL_DIR/archive/$TS.docker-compose.yaml
|
|
fi
|
|
|
|
curl -H 'Cache-Control: no-cache, no-store' -s -o $PLANE_INSTALL_DIR/docker-compose.yaml https://raw.githubusercontent.com/makeplane/plane/$BRANCH/deploy/selfhost/docker-compose.yml?$(date +%s)
|
|
curl -H 'Cache-Control: no-cache, no-store' -s -o $PLANE_INSTALL_DIR/variables-upgrade.env https://raw.githubusercontent.com/makeplane/plane/$BRANCH/deploy/selfhost/variables.env?$(date +%s)
|
|
|
|
if [ -f "$PLANE_INSTALL_DIR/.env" ];
|
|
then
|
|
cp $PLANE_INSTALL_DIR/.env $PLANE_INSTALL_DIR/archive/$TS.env
|
|
else
|
|
mv $PLANE_INSTALL_DIR/variables-upgrade.env $PLANE_INSTALL_DIR/.env
|
|
fi
|
|
|
|
|
|
echo ""
|
|
echo "Latest version is now available for you to use"
|
|
echo ""
|
|
echo "In case of Upgrade, your new setting file is availabe as 'variables-upgrade.env'. Please compare and set the required values in '.env 'file."
|
|
echo ""
|
|
|
|
}
|
|
function startServices(){
|
|
cd $PLANE_INSTALL_DIR
|
|
docker compose up -d
|
|
cd $SCRIPT_DIR
|
|
}
|
|
function stopServices(){
|
|
cd $PLANE_INSTALL_DIR
|
|
docker compose down
|
|
cd $SCRIPT_DIR
|
|
}
|
|
function restartServices(){
|
|
cd $PLANE_INSTALL_DIR
|
|
docker compose restart
|
|
cd $SCRIPT_DIR
|
|
}
|
|
function upgrade(){
|
|
echo "***** STOPPING SERVICES ****"
|
|
stopServices
|
|
|
|
echo
|
|
echo "***** DOWNLOADING LATEST VERSION ****"
|
|
download
|
|
|
|
echo "***** PLEASE VALIDATE AND START SERVICES ****"
|
|
|
|
}
|
|
function askForAction(){
|
|
echo
|
|
echo "Select a Action you want to perform:"
|
|
echo " 1) Install"
|
|
echo " 2) Start"
|
|
echo " 3) Stop"
|
|
echo " 4) Restart"
|
|
echo " 5) Upgrade"
|
|
echo " 6) Exit"
|
|
echo
|
|
read -p "Action [2]: " ACTION
|
|
until [[ -z "$ACTION" || "$ACTION" =~ ^[1-6]$ ]]; do
|
|
echo "$ACTION: invalid selection."
|
|
read -p "Action [2]: " ACTION
|
|
done
|
|
echo
|
|
|
|
|
|
if [ "$ACTION" == "1" ]
|
|
then
|
|
install
|
|
askForAction
|
|
elif [ "$ACTION" == "2" ] || [ "$ACTION" == "" ]
|
|
then
|
|
startServices
|
|
askForAction
|
|
elif [ "$ACTION" == "3" ]
|
|
then
|
|
stopServices
|
|
askForAction
|
|
elif [ "$ACTION" == "4" ]
|
|
then
|
|
restartServices
|
|
askForAction
|
|
elif [ "$ACTION" == "5" ]
|
|
then
|
|
upgrade
|
|
askForAction
|
|
elif [ "$ACTION" == "6" ]
|
|
then
|
|
exit 0
|
|
else
|
|
echo "INVALID ACTION SUPPLIED"
|
|
fi
|
|
}
|
|
|
|
askForAction
|