While creating a new Docker Container the script stopped with the following error message:
re-exec error: exit status 1: output: hcsshim::ImportLayer – failed failed in Win32: The system cannot find the path specified. (0x3)
Solution:
- Open PowerShell ISE as Administrator
- Execute the following command to clear the images:
docker images prune - Execute the following command to clean everything (Images, Containers, Cache and Networks):
docker system prune
Did my solution solve your problem? Leave a reply.