5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Docker] Pulling fs layer で止まって進まないとき

Last updated at Posted at 2018-06-04

はじめに

Docker pull をした時にプチつまづきをしたのでメモ。
"docker pulling fs layer stuck"で検索すると出るんだけど、Stack OverFlowの英語でちょっと避けちゃた人向け(自分)。
結局そのStack OverFlowのスレッドで解決したんだけども。。。

本題

dockerで

$ docker pull ruby:2.3.0
2.3.0: Pulling from library/ruby
efd26ecc9548: Waiting
a3ed95caeb02: Waiting
d1784d73276e: Pulling fs layer
72e581645fc3: Waiting
9709ddcc4d24: Waiting
7013ecfd652c: Waiting
66373b9c2e12: Waiting
2a6578ab609c: Waiting
4356bd31ea9f: Waiting

こんな感じで画面がずっと動かないときは、一度プロセス止めて、dockerクライアントの再起動が効果的です。

Docker for Mac使ってる人はメニューバーからRestart。
Docker for Mac

Linuxは

$ sudo service docker restart

で再起動してあげれば治るようです。
Docker Compose stuck downloading or pulling fs layer - Stack Overflow

最後に

上記のStack OverFlowを日本語に焼き直しただけです。
同じようなスレッド自体少ないということは、もしかしたら自己解決してしまうような簡単なことかもしれません。
早くDocker上級者になりたいです。

5
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
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?