DEV Community

Cover image for Execute inside a docker container
Dhanush N
Dhanush N

Posted on

Execute inside a docker container

dexec < container_id >

Used to execute a docker container

dexec(){
docker exec -it "$hello"/bin/bash
echo "$hello"
}

The above command is used to execute into a docker container. If you use any shortcut command line interface commands feel free to drop below.

Oldest comments (1)

Collapse
 
dasheck0 profile image
Stefan Neidig

This works only if bash is installed inside of the docker container. Depending on the base image you might only have a basic shell (i.e. sh). So keep that in mind ;)