healthcheck.sh 179 B

12345678910
  1. #!/bin/bash
  2. containerstart=`stat -c %Z /proc/1`
  3. curtime=`date +%s`
  4. if (( curtime-containerstart < 180 )); then
  5. echo "0"
  6. exit 0
  7. fi
  8. curl -f 127.0.0.1:8080/login || exit 1