Answers for "docker start with shell"

19

docker access container

docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
Posted by: Guest on May-12-2020
4

docker run command on container

sudo docker exec -it <container name> <command>
Posted by: Guest on July-04-2020
0

how to execute docker command in shell script

echo -n "enter type compose command ? "
read type

[[ "$type" ]] && docker-compose $type;
Posted by: Guest on February-07-2021
0

execute docker shell

Follow these steps:

    Use docker ps to get the name of the existing container.
    Use the command docker exec -it <container name> /bin/bash to get a bash shell in the container.
    Or directly use docker exec -it <container name> <command> to execute whatever command you specify in the container.
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language