docker run interactive 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: how to bash into docker container
docker exec -it nginx /bin/bash
Example 3: run docker
docker run -d -p 80:80 docker/getting-started
Example 4: docker run command on container
sudo docker exec -it <container name> <command>