docker/scripts/upgrade

48 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-05-26 20:09:02 +02:00
#!/bin/bash
set -e
cd $(dirname $0)/..
if [ -z $RESTARTED ]
then
echo "# pull newest bigblugbutton-docker.git"
git pull
2020-05-26 20:09:02 +02:00
# restart script, since it might have changed.
RESTARTED=1 ./scripts/upgrade
exit
2020-05-26 20:09:02 +02:00
else
2020-07-30 12:11:34 +02:00
2020-05-26 20:09:02 +02:00
echo ""
2020-10-21 22:13:37 +02:00
echo "# pull newest git submodules"
git submodule init
git submodule update
2020-05-26 20:09:02 +02:00
echo ""
echo "# recreate docker-compose.yml"
./scripts/generate-compose
2020-05-26 20:09:02 +02:00
echo ""
echo "# pull newest images"
docker-compose pull --ignore-pull-failures
2020-05-26 20:09:02 +02:00
echo ""
echo "# rebuild images"
2020-06-07 12:15:05 +02:00
2020-07-30 12:11:34 +02:00
# rebuild everything which got modified
docker-compose build --pull
2020-05-26 20:09:02 +02:00
COMMIT_HASH=$(git rev-parse --short HEAD)
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)
echo ""
echo "-------------------------------------"
echo "images successfully rebuilt!"
echo "we are on $COMMIT_HASH ($BRANCH_NAME)"
echo ""
echo "use following command for restarting bbb:"
echo " $ docker-compose up -d"
2020-05-26 20:09:02 +02:00
echo "-------------------------------------"
fi