Skip to content

Instantly share code, notes, and snippets.

@N-Porsh
Created April 16, 2020 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save N-Porsh/ae93e076b48f523498a2b9249eea7558 to your computer and use it in GitHub Desktop.
Save N-Porsh/ae93e076b48f523498a2b9249eea7558 to your computer and use it in GitHub Desktop.
wait for loading db container
#!/bin/sh
echo "Waiting for postgres..."
while ! nc -z database 5432; do
sleep 0.1
done
echo "PostgreSQL started"
npm start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment