From e41ae4b384983c19c2ea39880fd62f54fb130a3f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 8 Oct 2015 11:01:36 -0700 Subject: [PATCH] Run update.sh --- rails/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rails/README.md b/rails/README.md index da38ba5c4..05361829f 100644 --- a/rails/README.md +++ b/rails/README.md @@ -56,7 +56,7 @@ $ docker run --rm -v "$PWD":/usr/src/app -w /usr/src/app ruby:2.1 bundle install If you want to generate the scaffolding for a new Rails project, you can do the following: ```console -$ docker run -it --rm --user "$(id -u):$(id -g)" -v "$PWD":/usr/src/app -w /usr/src/app rails rails new webapp +$ docker run -it --rm --user "$(id -u):$(id -g)" -v "$PWD":/usr/src/app -w /usr/src/app rails rails new --skip-bundle webapp ``` This will create a sub-directory named `webapp` inside your current directory.