Answers for "docker exec sh"

4

docker exec bin/sh

docker exec -it <container name> /bin/bash
Posted by: Guest on October-02-2020
11

how to bash into docker container

docker exec -it nginx /bin/bash
Posted by: Guest on May-26-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

Browse Popular Code Answers by Language