Get into the docker console
Getting in
docker exec -it <container_name_or_id> bash # if the image has bash
docker exec -it <container_name_or_id> sh # if the image has sh
Getting out
exit
docker exec -it <container_name_or_id> bash # if the image has bash
docker exec -it <container_name_or_id> sh # if the image has sh
exit