docker exec into image code example
Example 1: how to bash into docker container
docker exec -it nginx /bin/bash
Example 2: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
Example 3: how to connect to docker via ssh
sudo docker exec –it nginx-test /bin/bash
Example 4: docker ssh
sudo docker attach Container_Name