docker run bash script code example
Example 1: docker run command on container
sudo docker exec -it <container name> <command>
Example 2: how to execute docker command in shell script
echo -n "enter type compose command ? "
read type
[[ "$type" ]] && docker-compose $type;
Example 3: docker how to run existing container
docker start <container-name/ID>