docker run shell in container code example

Example 1: docker access container

docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine

Example 2: docekr enter container

docker exec -it [container-id] bash

Example 3: how to bash into docker container

docker exec -it nginx /bin/bash

Example 4: docker run command on container

sudo docker exec -it <container name> <command>

Example 5: how to execute docker command in shell script

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

[[ "$type" ]] && docker-compose $type;

Tags:

Misc Example