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.
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