You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The database host is hardcoded to db:5432 instead of leveraging the environmental variables defined in .env. This prevents the service from properly starting in environments where the service address of the database may not be db.
It is possible to modify to /app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "db is up" , after which the default .env can be updated to
The database host is hardcoded to
db:5432instead of leveraging the environmental variables defined in .env. This prevents the service from properly starting in environments where the service address of the database may not bedb.It is possible to modify to
/app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "db is up", after which the default .env can be updated toThis will allow for better runtime configuration in deployed environments.
(will submit PR if this is ok)