LoginSignup
1
1

More than 3 years have passed since last update.

dockerでERROR: An HTTP request took too long to complete. と表示されるエラー

Last updated at Posted at 2020-06-14

問題

ERROR: An HTTP request took too long to complete. と表示される。

ERROR: An HTTP request took too long to complete. Retry with --verbose to obtain debug information.
If you encounter this issue regularly because of slow network conditions, consider setting COMPOSE_HTTP_TIMEOUT to a higher value (current value: 60).

原因?

EC2のメモリ容量不足?

解決法

停止コンテナ一括削除

$ docker container prune

全コンテナ一括削除

$ docker rm -f `docker ps -a -q`

再起動

$ docker-compose up

解決!

参考

https://qiita.com/boiyama/items/9972601ffc240553e1f3
https://dawaan.com/docker-for-mac-hung/

コメント

その他、より良い方法や、ご指摘等御座いましたら、ご遠慮なくご教示ください。
宜しくお願いします。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1