ponysearch-docker/update.sh

93 lines
2.5 KiB
Bash
Raw Normal View History

#!/bin/sh
2019-08-06 12:40:01 +02:00
#
# Disclaimer: this is more a documentation than code to execute
#
2019-08-06 12:40:01 +02:00
# change if require
2019-07-11 17:13:31 +02:00
SERVICE_NAME="searx-docker.service"
2019-08-06 12:40:01 +02:00
# change if require :
# fastforward : only fast-forward
# rebase : rebase with autostash, at your own risk
UPDATE_TYPE="fastforward"
BASE_DIR="$(dirname -- "`readlink -f -- "$0"`")"
cd -- "$BASE_DIR"
2019-08-06 12:40:01 +02:00
# check if git presence
2019-07-13 13:28:18 +02:00
if [ ! -x "$(which git)" ]; then
echo "git not found" 1>&2
exit 1
fi
2019-08-06 12:40:01 +02:00
# check if the current user owns the local git repository
git_owner=$(stat -c '%U' .git)
if [ "$git_owner" != "$(whoami)" ]; then
echo "The .git repository is own by $git_owner" 1>&2
exit 1
fi
# warning if the current branch is not master
current_branch=$(git rev-parse --abbrev-ref HEAD)
if [ "$current_branch" != "master" ]; then
echo "Warning: master won't be updated, only $current_branch"
fi
# git fetch first
git fetch origin master
# is everything already up-to-date ?
current_commit=$(git rev-parse $current_branch)
origin_master_commit=$(git rev-parse origin/master)
if [ "$current_commit" = "$origin_master_commit" ]; then
echo "Already up-to-date, commit $current_commit"
exit 0
fi
# docker stuff
SEARX_DOCKERCOMPOSE=$(grep "Environment=SEARX_DOCKERCOMPOSEFILE=" "$SERVICE_NAME" | awk -F\= '{ print $3 }')
. ./util.sh
if [ ! -x "$(which systemctl)" ]; then
echo "systemctl not found" 1>&2
exit 1
fi
# stop the systemd service now, because after the update
# the code might be out of sync with the current running services
2019-07-13 13:28:18 +02:00
systemctl stop "${SERVICE_NAME}"
2019-08-06 12:40:01 +02:00
# update
case "$UPDATE_TYPE" in
"fastforward")
git pull --ff-only origin master
;;
"rebase")
git pull --rebase --autostash origin master
;;
esac
2019-08-06 12:40:01 +02:00
# Check conflicts
2019-07-11 17:13:31 +02:00
if [ $(git ls-files -u | wc -l) -gt 0 ]; then
echo "There are git conflicts"
else
# update docker images
2019-08-06 12:40:01 +02:00
docker-compose -f $DOCKERCOMPOSEFILE pull
# remove dangling images
docker rmi $(docker images -f "dangling=true" -q)
# display searx version
SEARX_IMAGE=$(cat $DOCKERCOMPOSEFILE | grep "searx/searx" | grep -v "searx-checker" | awk '{ print $2 }')
SEARX_VERSION=$(docker inspect -f '{{index .Config.Labels "org.label-schema.version"}}' $SEARX_IMAGE)
echo "Searx version: $SEARX_VERSION"
docker images --digests "searx/*:latest"
2019-07-11 17:13:31 +02:00
# update searx configuration
source ./.env
2019-08-06 12:40:01 +02:00
docker-compose -f $DOCKERCOMPOSEFILE run searx ${SEARX_COMMAND} -d
2019-08-06 12:40:01 +02:00
# let the user see
echo "Use\nsystemctl start \"${SERVICE_NAME}\"\nto restart searx"
fi