- The docker conainer may be in the background
- docker exec /bin/bash ---> this doesn't work
The right command is:
docker exec -i -t 8479103adbe2 /bin/bash
where 8479103adbe2 is the image id.
The right command is:
docker exec -i -t 8479103adbe2 /bin/bash
where 8479103adbe2 is the image id.