wait-for-container.sh 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #!/usr/bin/env bash
  2. #
  3. # Exposes a routine scripts can call to wait for a container if that container set up a health command
  4. #
  5. # Please source .ci/functions/imports.sh as a whole not just this file
  6. #
  7. # Version 1.0.1
  8. # - Initial version after refactor
  9. # - Make sure wait_for_contiainer is silent
  10. function wait_for_container {
  11. set +x
  12. until ! container_running "$1" || (container_running "$1" && [[ "$(docker inspect -f "{{.State.Health.Status}}" ${1})" != "starting" ]]); do
  13. echo ""
  14. docker inspect -f "{{range .State.Health.Log}}{{.Output}}{{end}}" ${1}
  15. echo -e "\033[34;1mINFO:\033[0m waiting for node $1 to be up\033[0m"
  16. sleep 2;
  17. done;
  18. # Always show logs if the container is running, this is very useful both on CI as well as while developing
  19. if container_running $1; then
  20. docker logs $1
  21. fi
  22. if ! container_running $1 || [[ "$(docker inspect -f "{{.State.Health.Status}}" ${1})" != "healthy" ]]; then
  23. cleanup_all_in_network $2
  24. echo
  25. echo -e "\033[31;1mERROR:\033[0m Failed to start $1 in detached mode beyond health checks\033[0m"
  26. echo -e "\033[31;1mERROR:\033[0m dumped the docker log before shutting the node down\033[0m"
  27. return 1
  28. else
  29. echo
  30. echo -e "\033[32;1mSUCCESS:\033[0m Detached and healthy: ${1} on docker network: ${network_name}\033[0m"
  31. return 0
  32. fi
  33. }