Use ADD rather than VOLUME in order to work with remote containers.

This commit is contained in:
Brian Grant
2014-06-17 18:14:00 +00:00
parent fe0cb7c87b
commit 0a05574463
2 changed files with 4 additions and 3 deletions

View File

@@ -179,7 +179,8 @@ git rebase upstream/master
### Regenerating the documentation
```
cd kubernetes/api
sudo docker build -t kubernetes/raml2html - < raml2html.dockerfile
sudo docker run -v `pwd`:/data kubernetes/raml2html
sudo docker build -t kubernetes/raml2html .
sudo docker run --name="docgen" kubernetes/raml2html
sudo docker cp docgen:/data/kubernetes.html .
```