Added example for how to runcontainer using Windows PowerShell

This commit is contained in:
kmpm 2019-01-18 10:35:18 +01:00
parent 58c38acf5e
commit f296438d35

View File

@ -28,8 +28,14 @@ $ docker build -t vyos-docu - < Dockerfile
### Build Documentation ### Build Documentation
Linux
```bash ```bash
$ docker run -v `pwd`:`pwd` -w `pwd`/docs -i -t --rm vyos-docu bash $ docker run -v `pwd`:`pwd` -w `pwd`/docs -i -t --rm vyos-docu bash
``` ```
Windows PowerShell
```powershell
docker run -v "$($pwd.path):/vyos" -w "/vyos/docs" -i -t --rm vyos-docu bash
```
Inside the container you can the build the documentation as stated above Inside the container you can the build the documentation as stated above