1
0

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 1 year has passed since last update.

docker: Error response from daemon: Failed to inspect container エラーの解決策

Posted at

以下のような感じでdockerを使用しようとするとエラー

$ docker run -p 6080:80 --shm-size=512m seigott/tetris_docker:latest
docker: Error response from daemon: Failed to inspect container 889f7a5e430eae61378641c551f37d6d212ab3058a8e1dbb05ce5ea40e207ba6: Error response from daemon: readlink /var/lib/docker/overlay2/l: invalid argument.

image取得時に何かおかしな点があったような気がするので、imageを削除する。

$ docker images              # imageを検索
$ docker rmi -f ${imageID}   # imageIDを指定して、imageをremove

もう一度実行すると問題は起こらなかった

$ docker run -p 6080:80 --shm-size=512m seigott/tetris_docker:latest

#参考
'failed to inspect container error' while trying to ssh into containers using ignite

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?