how to exec command docker exec and running command code example
Example 1: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
Example 2: docker how to run existing container
docker start <container-name/ID>