docker enter containers shell code example
Example 1: docker access container
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
Example 2: docker how to run existing container
docker start <container-name/ID>
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
docker start <container-name/ID>