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.
Top comments (1)
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 ;)