pleroma-docker/entrypoint.sh

31 lines
416 B
Bash
Raw Normal View History

#!/bin/ash
# shellcheck shell=dash
2018-08-20 17:06:34 -04:00
set -e
set -x
if [ -n "$BUILDTIME" ]; then
mix local.rebar --force
mix local.hex --force
2018-12-24 17:20:17 -05:00
mix deps.get
mix compile
exit 0
2018-12-24 17:20:17 -05:00
fi
2019-01-10 13:32:40 -05:00
set +x
while ! pg_isready -U pleroma -d postgres://db:5432/pleroma -t 1; do
echo "[X] Database is starting up..."
sleep 1s
done
set -x
# Recompile
mix compile
2018-12-24 17:20:17 -05:00
# Migrate db
2018-08-20 17:06:34 -04:00
mix ecto.migrate
2018-12-24 17:20:17 -05:00
# Off we go!
2018-08-20 17:06:34 -04:00
exec mix phx.server