Make custom.d work again

This commit is contained in:
sn0w 2019-01-10 19:49:47 +01:00
parent a72cfa9b4e
commit de32be4144
No known key found for this signature in database
GPG Key ID: DDEDFB9D3FA15727
2 changed files with 14 additions and 11 deletions

View File

@ -14,7 +14,7 @@ EXPOSE 4000
# Get dependencies
RUN \
apk add --no-cache --virtual .tools \
git curl postgresql-client \
git curl rsync postgresql-client \
\
&& apk add --no-cache --virtual .sdk \
build-base \

View File

@ -2,29 +2,32 @@
# shellcheck shell=dash
set -e
set -x
if [ -n "$BUILDTIME" ]; then
echo "#> Preparing compilation..."
mix local.rebar --force
mix local.hex --force
echo "#> Compiling..."
mix deps.get
mix compile
exit 0
fi
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
echo "#> Applying customizations and patches.."
rsync -av /custom.d/ /home/pleroma/pleroma/
# Recompile
echo "#> Recompiling..."
mix compile
# Migrate db
echo "#> Waiting until database is ready..."
while ! pg_isready -U pleroma -d postgres://db:5432/pleroma -t 1; do
sleep 1s
done
echo "#> Upgrading database..."
mix ecto.migrate
# Off we go!
echo "#> Liftoff!"
exec mix phx.server