diff options
author | kmpm <peter@birchroad.net> | 2019-01-18 10:35:18 +0100 |
---|---|---|
committer | kmpm <peter@birchroad.net> | 2019-01-18 10:35:18 +0100 |
commit | f296438d3577f615f8b0d2dab23dde3f3bc5a28e (patch) | |
tree | 923c99b5770e127747f4b9e90f8ba8b8f3781eea /README.md | |
parent | 58c38acf5e4f30776175e31633886bd591444d42 (diff) | |
download | vyos-documentation-f296438d3577f615f8b0d2dab23dde3f3bc5a28e.tar.gz vyos-documentation-f296438d3577f615f8b0d2dab23dde3f3bc5a28e.zip |
Added example for how to runcontainer using Windows PowerShell
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |