Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OCI runtime exec failed: exec failed: container_linux.go:348 : starting container process caused "no such file or directory": unknown

I am trying to bringup my fabric network. I got my orderers organization started. I got my peer organizations started. I got my cli started. after that request is failing with

OCI runtime exec failed:

exec failed: container_linux.go:348 : starting container process caused "no such file or directory": unknown 
like image 410
Naga Avatar asked Jun 11 '18 20:06

Naga


People also ask

What is an OCI runtime?

Open Container Initiative (OCI) Runtimes. Sometimes referred to as "low-level" runtimes, implementations of the OCI Runtime spec are focused on managing the container lifecycle—abstracting the Linux primitives—and are not required to do much else. Low level runtimes create and run “the container.”

What is Docker compose exec?

docker-compose exec : will run docker exec to start a new process/command inside an existing, running container. docker-compose run : starts a new container for interactively executing the specified command, i.e. executing docker run.

How do I update Docker to latest version?

To upgrade Docker Engine, first run sudo apt-get update , then follow the installation instructions, choosing the new version you want to install.


1 Answers

The error means that either working_dir is undefined, or it does not exist. Czeck the cli section in your docker-compose file for the above setting.

like image 174
Bolek Tekielski Avatar answered Sep 22 '22 00:09

Bolek Tekielski