
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)
Subscribe

Stefan Neidig•
Interested in Game Development, Software Engineering, Web 3.0, AI and generally Tech Stuff. Software Developer all my life and now CTO at NanoGiants
- EducationTU Dresden, HHU Düsseldorf
- WorkCTO at NanoGiants
- Joined
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 ;)
For further actions, you may consider blocking this person and/orreporting abuse