Categories
Business Central Docker Dynamics NAV Microsoft Windows Server 2016

hcsshim::ImportLayer – failed failed in Win32: The system cannot find the path specified. (0x3)

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:

  1. Open PowerShell ISE as Administrator
  2. Execute the following command to clear the images:
    docker images prune
  3. Execute the following command to clean everything (Images, Containers, Cache and Networks):
    docker system prune

Did my solution solve your problem? Leave a reply.

Categories
Docker Uncategorized

HOW TO remove all docker images

Remove all images

All the Docker images on a system can be listed by adding -a to the docker images command. Once you’re sure you want to delete them all, you can add the -q flag to pass the Image ID to docker rmi:

List:

docker images -a

Remove:

docker rmi $(docker images -a -q)

Source: https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes

Did my HOW TO help you? Leave a reply.