以下のようにする。 ```bash # 10秒おきにlocalhost:8080にアクセスし、30回までリトライを許容する(実質5分がtimeout) curl --retry 30 --retry-delay 10 --retry-connrefused localhost:8080 ```