ponysearch-docker/update.sh

36 lines
750 B
Bash
Raw Normal View History

#!/bin/sh
. ./util.sh
2019-07-11 17:13:31 +02:00
SERVICE_NAME="searx-docker.service"
if [ ! -x "${which systemctl}" ]; then
echo "systemctl not found" 1>&2
exit 1
fi
if [ ! -x "${which git}" ]; then
echo "git not found" 1>&2
exit 1
fi
# stop the systemd service
systemctl stop searx-docker.service
2019-07-11 17:13:31 +02:00
# update, change to 'git pull --rebase --autostash origin master' at your own risk
git pull --ff-only --autostash origin master
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
docker-compose pull
2019-07-11 17:13:31 +02:00
# update searx configuration
source ./.env
docker-compose run searx ${SEARX_COMMAND} -d
fi
# let the user see
2019-07-11 17:13:31 +02:00
echo "Use\nsystemctl start searx-docker.service\nto restart searx"