I'm working with the book Docker in action and I'm trying to work with Docker.
When I run the following commands:
docker run --name export-test \
dockerinaction/ch7_packed:latest ./echo For Export
docker export --output contents.tar export-test
docker rm export-test
tar -tf contents.tar
the console returns me:
I get the following error message:
Error response from daemon: OCI runtime create failed:
container_linux.go:348: starting container process caused "exec:
\"/bin/bash\": stat /bin/bash: no such file or directory": unknown.
I tried to find a solution, but could not find one that works. I have rebooted Docker and it is still doesn't works!