From 8c3d4c2c561ccfbae72a3a1d103280853be5edcb Mon Sep 17 00:00:00 2001 From: Diego Quintana Date: Thu, 28 Jun 2018 09:25:34 -0400 Subject: [PATCH] Add short inline explanation for -w (#291) I don't know, but maybe having this short explanation saves a `docker run --help` for someone. Tell me if it's too much :D --- slides/intro/Working_With_Volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slides/intro/Working_With_Volumes.md b/slides/intro/Working_With_Volumes.md index e16b6135..0a6e6514 100644 --- a/slides/intro/Working_With_Volumes.md +++ b/slides/intro/Working_With_Volumes.md @@ -195,7 +195,7 @@ Let's start another container using the `webapps` volume. $ docker run -v webapps:/webapps -w /webapps -ti alpine vi ROOT/index.jsp ``` -Vandalize the page, save, exit. +Where `-w` sets the working directory inside the container. Vandalize the page, save and exit. Then run `curl localhost:1234` again to see your changes.