> For the complete documentation index, see [llms.txt](https://resources.oskarklintrot.se/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://resources.oskarklintrot.se/cli-cheat-sheets/docker-for-windows.md).

# Docker for Windows

Run a docker container (in this case ruby), mount current directory to `/app` and open bash:

```bash
$ docker run -v ${pwd}:/app -it ruby /bin/bash`
```
