Run update.sh

This commit is contained in:
Docker Library Bot 2015-10-08 11:01:36 -07:00
parent acf1079237
commit e41ae4b384
1 changed files with 1 additions and 1 deletions

View File

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