add docker exec script #2

Merged
LiamPietralla merged 1 commits from doc/docker-bash into main 2024-09-17 11:28:49 +10:00
4 changed files with 22 additions and 0 deletions

View File

@ -55,6 +55,14 @@ export default defineConfig({
{ text: 'Text Width HR', link: '/css/text-width-hr' }, { text: 'Text Width HR', link: '/css/text-width-hr' },
] ]
}, },
{
text: 'Docker',
link: '/docker/',
collapsed: true,
items: [
{ text: 'Docker Exec', link: '/docker/exec-into-contanainer' },
]
},
{ {
text: 'EF Core', text: 'EF Core',
link: '/ef-core/', link: '/ef-core/',

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>
```

3
docs/docker/index.md Normal file
View File

@ -0,0 +1,3 @@
# Docker Snippets and Musings
#### [Exec Into Container](./exec-into-container.md)

View File

@ -18,6 +18,10 @@ hero:
text: CSS text: CSS
link: /css/ link: /css/
- theme: alt
text: Docker
link: /docker/
- theme: alt - theme: alt
text: EF Core text: EF Core
link: /ef-core/ link: /ef-core/