access a runnig container code example
Example 1: docker access container
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
Example 2: docker ssh
sudo docker attach Container_Name
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
sudo docker attach Container_Name