docker run image with bash code example
Example 1: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
Example 2: docker run command on container
sudo docker exec -it <container name> <command>
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
sudo docker exec -it <container name> <command>