enter in docker image code example
Example 1: docker access container
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
Example 2: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash