7 lines
197 B
Markdown
7 lines
197 B
Markdown
|
# 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>
|
||
|
```
|