how to access docker container command line 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
docker exec -it nginx /bin/bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash