summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkmpm <peter@birchroad.net>2019-01-18 10:35:18 +0100
committerkmpm <peter@birchroad.net>2019-01-18 10:35:18 +0100
commitf296438d3577f615f8b0d2dab23dde3f3bc5a28e (patch)
tree923c99b5770e127747f4b9e90f8ba8b8f3781eea
parent58c38acf5e4f30776175e31633886bd591444d42 (diff)
downloadvyos-documentation-f296438d3577f615f8b0d2dab23dde3f3bc5a28e.tar.gz
vyos-documentation-f296438d3577f615f8b0d2dab23dde3f3bc5a28e.zip
Added example for how to runcontainer using Windows PowerShell
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index deed63e7..5b45873b 100644
--- a/README.md
+++ b/README.md
@@ -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