I have a container that is running the Apache service in the foreground. I would like to be able to access the container from another shell in order to \"poke around\" insid
With docker 1.3, there is a new command docker exec. This allows you to enter a running container:
docker exec -it [container-id] bash