Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

ssh to a docker container

# to get the name of the existing container
$docker ps 
# Command to get a bash shell in the container
$docker exec -it <container name> /bin/bash 
# to execute whatever command you specify in the container.
docker exec -it <container name> <command> to execute whatever command you specify in the container.
Source by phase2.github.io #
 
PREVIOUS NEXT
Tagged: #ssh #docker #container
ADD COMMENT
Topic
Name
3+3 =