run docker exec in bash script code example
Example 1: docker exec bash
//For executing commands in the container
docker exec -it bash
Example 2: how to execute docker command in shell script
echo -n "enter type compose command ? "
read type
[[ "$type" ]] && docker-compose $type;