Cd ${ISAAC_ROS_WS}/src/isaac_ros_common && \ ./scripts/run_dev.sh Error

I encountered an issue with my Docker setup while working with the isaac_ros_common repository that I cloned yesterday. Here’s the error message I received:

Running isaac_ros_dev-x86_64-container
docker:r Error response from daemon: failed to create task for container: failed to create shim >task: OCI runtime create failed: runc create failed: unable to start container process: error >during container init: error running hook #1: error running hook: exit status 1, stdout: , >stderr: time=“2024-01-30T12:32:48+09:00” level=error msg=“no such file or directory”: unknown.
~/workspaces/isaac_ros-dev/src/isaac_ros_common

Interestingly, I can successfully start Docker and run the “hello-world” container using the following commands:

sudo service docker start
sudo docker run hello-world

Development Environment:
Ubuntu 20.04 Desktop

Hi @sweetyleah0

Clean your docker environment and remove the Isaac ROS image:

docker rmi isaac_ros_dev-x86_64

This command forces to rebuild the Isaac ROS image from the script

cd ${ISAAC_ROS_WS}/src/isaac_ros_common && \
  ./scripts/run_dev.sh

If you are encountering the same issue, please let me know

1 Like