Skip to content

Instantly share code, notes, and snippets.

@alexandreprates
Created April 5, 2018 11:28
Show Gist options
  • Select an option

  • Save alexandreprates/28350e122e1f6b3092ee540c62ee0bf5 to your computer and use it in GitHub Desktop.

Select an option

Save alexandreprates/28350e122e1f6b3092ee540c62ee0bf5 to your computer and use it in GitHub Desktop.
#!/usr/bin/env sh
echo Checking if the service port is available
until nc -z <service> <port>; do
printf '.'
sleep 5
done
echo Service available starting app
exec $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment