mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
cd /etc/shlink
|
|
|
|
echo "Creating fresh database if needed..."
|
|
php bin/cli db:create -n -q
|
|
|
|
echo "Updating database..."
|
|
php bin/cli db:migrate -n -q
|
|
|
|
echo "Generating proxies..."
|
|
php vendor/doctrine/orm/bin/doctrine.php orm:generate-proxies -n -q
|
|
|
|
echo "Clearing entities cache..."
|
|
php vendor/doctrine/orm/bin/doctrine.php orm:clear-cache:metadata -n -q
|
|
|
|
# Try to download GeoLite2 db file only if the license key env var was defined
|
|
if [ ! -z "${GEOLITE_LICENSE_KEY}" ]; then
|
|
echo "Downloading GeoLite2 db file..."
|
|
php bin/cli visit:download-db -n -q
|
|
fi
|
|
|
|
# Periodicaly run visit:locate every hour
|
|
# https://shlink.io/documentation/long-running-tasks/#locate-visits
|
|
# set env var "ENABLE_PERIODIC_VISIT_LOCATE=true" to enable
|
|
if [ $ENABLE_PERIODIC_VISIT_LOCATE ]; then
|
|
echo "Configuring periodic visit locate..."
|
|
echo "0 * * * * php /etc/shlink/bin/cli visit:locate -q" > /etc/crontabs/root
|
|
/usr/sbin/crond &
|
|
fi
|
|
|
|
# When restarting the container, openswoole might think it is already in execution
|
|
# This forces the app to be started every second until the exit code is 0
|
|
until php vendor/bin/laminas mezzio:swoole:start; do sleep 1 ; done
|