The code snippet for mounting Windows directories won't work: it will produce an "Invalid bind mount spec" error as Docker cannot properly read the path. The core error was addressed in [#12590](https://github.com/docker/docker/issues/12590#issuecomment-96767796), this is just an update to the tutorial.
Link destination changed toa more appropriate (imo) destination.
Link originally linked to docker env varibles whereas link description describes other docker commands.
* added title in engine/tutorials/index.md
Signed-off-by: Adrien Duermael <adrien@duermael.com>
* added pre_build script for Docker Cloud CI
It includes one first test that should run when PRs are submitted.
For now it only checks if there’s always a title in fronmatters.
We should add more tests as we fix issues.
Signed-off-by: Adrien Duermael <adrien@duermael.com>
* Jenkinsfile + pre_build script update
Signed-off-by: Adrien Duermael <adrien@duermael.com>
* fix in Jenkinsfile
Signed-off-by: Adrien Duermael <adrien@duermael.com>
* chmod +x hooks/pre_build
Signed-off-by: Adrien Duermael <adrien@duermael.com>
* removed hooks folder
since we’re not using Docker Cloud CI
Signed-off-by: Adrien Duermael <adrien@duermael.com>
I feel this sentence 'leave off the `-P` flag and also ' not necessary as that is not used that flag in the previous. User gets confused about this flag.
I am not sure any significance of that flag. If it is necessary to mention , we should better document it.
Thanks,
Srinivasarao Gurubelli
Apple has changed their branding guidelines from 'OS X' to 'macOS'
so we should update ours to be within trademark / branding
guidelines. See http://www.apple.com/macos/sierra/
Signed-off-by: Misty Stanley-Jones <misty@docker.com>
Changed all wrong /opt/webapp as /webapp
/opt/webapp of web container includes app.py, if set destination folder as /opt/webapp, app.py is not visible and below error log presents and the web container will exit, so it's better to set the destination folder as /webapp.
docker logs -f web
python: can't open file 'app.py': [Errno 2] No such file or directory
/opt/webapp of web container includes app.py, if set destination folder as /opt/webapp, app.py is not visible and below error log presents, so it's better to set the destination folder as /webapp.
docker logs -f web
python: can't open file 'app.py': [Errno 2] No such file or directory
Instead of disabling templating for entire files, fix instances
individually by wrapping blocks in:
```{% raw %}
... content ...
{% endraw %}```
Signed-off-by: Benjamin R. Haskell <docker@benizi.com>