docker run command in container bash code example
Example 1: docker interactive shell
docker exec -it [containerid/name] [shell]
#Example
docker exec -it fa80b69 bash
#if its an apline container use "sh" instead of "bash"
Example 2: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
Example 3: docker how to run existing container
docker start <container-name/ID>