filesystem layer verification failed for digest

2019-05-19 07:03发布

How to fix the docker problem? when I use the latest EC2 and docker (1.9.1) whatever the image is, they always tell me this error: """ filesystem layer verification failed for digest sha256 """

What should I do?

标签: docker
2条回答
beautiful°
2楼-- · 2019-05-19 07:25

It happened to me when I updated Amazon Linux "sudo yum update".

查看更多
老娘就宠你
3楼-- · 2019-05-19 07:47

That looks like an error from a trusted sandbox.
But it has been seen in other context, like issue 15603

Try and stop/restart the docker daemon, and remove all images

 sudo service docker stop
 sudo service docker start
 docker images -q | xargs docker rmi
查看更多
登录 后发表回答