Error response from the daemon when launching the docker container

When I type docker start projects, I get this error:

Error response from the daemon: invalid header field value "oci runtime error: container_linux.go: 247: initial container process called \" exec: \\ "/ bin / bash" \\ ": stat / bin / bash": no such file or directory \ "\ n" Error: Failed to start containers: projects

What can I do, can I launch docker containers?

+4
source share
1 answer

Two errors are possible:

  • Invalid file or directory that you specify
  • The base image you are using does not have / bin / bash

and try to start a new container instead of the old one from docker launch projects

+2

Source: https://habr.com/ru/post/1665473/


All Articles