Requirements pinning + some cleanup #36
|
@ -1,16 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
echo "Waiting for postgres..."
|
|
||||||
|
|
||||||
POSTGRES_PORT=${POSTGRES_PORT:-5432}
|
|
||||||
POSTGRES_HOST=${POSTGRES_HOST:-localhost}
|
|
||||||
|
|
||||||
while ! nc -z "$POSTGRES_HOST" "$POSTGRES_PORT"; do
|
|
||||||
sleep 0.1
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "PostgreSQL started"
|
|
||||||
|
|
||||||
benjaoming marked this conversation as resolved
Outdated
|
|||||||
# Only migrate, collectstatic and compilemessages if we are NOT in development
|
# Only migrate, collectstatic and compilemessages if we are NOT in development
|
||||||
if [ -z "$DEBUG" ]; then
|
if [ -z "$DEBUG" ]; then
|
||||||
python src/manage.py migrate;
|
python src/manage.py migrate;
|
||||||
|
|
Loading…
Reference in a new issue
This check is not in docker-compose.yml. The "depends_on" does not ensure that the database has started yet. So I would think that we still need this?
I thought I had added the healthcheck in the previous PR, but it's actually here
https://git.data.coop/data.coop/membersystem/pulls/33/files#issuecomment-2880
3 PRs open at the same time is not ideal... sometimes jumping in and out of branches is dizzying 🥴