diaspora/docker/develop/docker-entrypoint.sh
2018-10-28 22:09:06 +01:00

47 lines
1 KiB
Bash
Executable file

#!/bin/bash
# ----- Ensure correct ownership of /diaspora -----
dia_home=/home/diaspora
HOST_UID=$(stat -c %u /diaspora)
HOST_GID=$(stat -c %g /diaspora)
if ! getent group $HOST_GID >/dev/null; then
groupmod --gid $HOST_GID diaspora
fi
if ! getent passwd $HOST_UID >/dev/null; then
usermod --uid $HOST_UID --gid $HOST_GID diaspora
fi
chown -R $HOST_UID:$HOST_GID /home/diaspora
mkdir -p /diaspora/tmp/pids
chown $HOST_UID:$HOST_GID /diaspora/tmp /diaspora/tmp/pids /diaspora/vendor/bundle
# ----- Wait for DB ----
if [ -z $DIA_NODB ] || [ ! $DIA_NODB -eq 1 ]; then
if grep -qFx " <<: *postgresql" /diaspora/config/database.yml; then
host=postgresql
port=5432
else
host=mysql
port=3306
fi
c=0
trap '{ exit 1; }' INT
while ! (< /dev/tcp/${host}/${port}) 2>/dev/null; do
printf "\rWaiting for $host:$port to become ready ... ${c}s"
sleep 1
((c++))
done
trap - INT
if [ ! -z $c ]; then
printf "\rWaiting for $host:$port to become ready ... done (${c}s)\n"
fi
fi
cd /diaspora
gosu $HOST_UID:$HOST_GID "$@"