Merge pull request #131 from infosiftr/rails-bootstrap-example

Rails bootstrap example
This commit is contained in:
Tianon Gravi
2014-12-31 17:04:10 -07:00
2 changed files with 18 additions and 0 deletions
+9
View File
@@ -55,6 +55,15 @@ run` will help you generate one. Run it in the root of your app, next to the
docker run --rm -v "$(pwd)":/usr/src/app -w /usr/src/app ruby:2.1 bundle install
## Bootstrap a new Rails application
If you want to generate the scaffolding for a new Rails project, you can do the
following:
docker run -it --rm --user "$(id -u):$(id -g)" -v "$(pwd)":/usr/src/app -w /usr/src/app rails rails new webapp
This will create a sub-directory named `webapp` inside your current directory.
# License
View [license information](https://github.com/rails/rails#license)
+9
View File
@@ -43,3 +43,12 @@ run` will help you generate one. Run it in the root of your app, next to the
`Gemfile`:
docker run --rm -v "$(pwd)":/usr/src/app -w /usr/src/app ruby:2.1 bundle install
## Bootstrap a new Rails application
If you want to generate the scaffolding for a new Rails project, you can do the
following:
docker run -it --rm --user "$(id -u):$(id -g)" -v "$(pwd)":/usr/src/app -w /usr/src/app rails rails new webapp
This will create a sub-directory named `webapp` inside your current directory.