Merge pull request #4 from kmpm/features/windows-docker-example

Added example for how to runcontainer using Windows PowerShell
This commit is contained in:
Christian Poessinger 2019-01-18 12:01:48 +01:00 committed by GitHub
commit dcaf982da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,8 +28,14 @@ $ docker build -t vyos-docu - < Dockerfile
### Build Documentation
Linux
```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