Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Docker: Mounting external host directory as a volume (Windows hosts)

In CMD window:

> docker run -it --rm -v %cd%:/opt/ mydocker

In Power Shell:

> docker run -it --rm -v ${PWD}:/opt/ mydocker

In any case the path to the folder must only contain [a-zA-Z0-9_.-] character so no spaces, no Hebrew characters, etc.