add docker exec script

This commit is contained in:
2024-09-17 11:28:31 +10:00
parent b12a09de0c
commit 7f394c94ea
4 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Exec Into Container
Often it's handy to exec into a container to poke around or run commands. Here's how you can do that:
```bash
docker run --rm -it --entrypoint /bin/bash <container-name>
```