When I run:
docker exec -it 9ae /bin/bash
I get:
This container has: Cmd: /boot/bootloader
Does it have any effect?
Share and learn in the Docker community.
When I run:
docker exec -it 9ae /bin/bash
I get:
This container has: Cmd: /boot/bootloader
Does it have any effect?
The error message clearly says “/bin/bash: no such file or directory”.
On most (but not all!) images at least /bin/sh
is available.
You might want to try again using /bin/sh instead of /bin/bash.