You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
886 B
31 lines
886 B
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. /etc/profile.d/btcpay-env.sh
|
|
|
|
cd "$BTCPAY_BASE_DIRECTORY/btcpayserver-docker"
|
|
git pull --force
|
|
|
|
if [[ $BTCPAY_DOCKER_COMPOSE == *docker-compose.generated.yml ]]; then
|
|
# Generate the docker compose in BTCPAY_DOCKER_COMPOSE
|
|
. ./build.sh
|
|
if [ "$BTCPAYGEN_OLD_PREGEN" == "true" ]; then
|
|
cp Generated/docker-compose.generated.yml $BTCPAY_DOCKER_COMPOSE
|
|
fi
|
|
fi
|
|
|
|
for scriptname in *.sh; do
|
|
if [ "$scriptname" == "build.sh" ] || \
|
|
[ "$scriptname" == "build-pregen.sh" ] || \
|
|
[ "$scriptname" == "btcpay-setclocale.sh" ]; then
|
|
continue;
|
|
fi
|
|
echo "Adding symlink of $scriptname to /usr/bin"
|
|
chmod +x $scriptname
|
|
[ -e /usr/bin/$scriptname ] && rm /usr/bin/$scriptname
|
|
ln -s "$(pwd)/$scriptname" /usr/bin
|
|
done
|
|
|
|
cd "`dirname $BTCPAY_ENV_FILE`"
|
|
docker-compose -f $BTCPAY_DOCKER_COMPOSE up -d --remove-orphans
|
|
|