Skip to content

Commit d08c2c7

Browse files
Document docker related files in app folder structure
1 parent 438cad4 commit d08c2c7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

guides/source/getting_started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ of the files and folders that Rails creates by default:
177177
|config/|Contains configuration for your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).|
178178
|config.ru|Rack configuration for Rack-based servers used to start the application. For more information about Rack, see the [Rack website](https://rack.github.io/).|
179179
|db/|Contains your current database schema, as well as the database migrations.|
180+
|Dockerfile|Configuration file for Docker.|
180181
|Gemfile<br>Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see the [Bundler website](https://bundler.io).|
181182
|lib/|Extended modules for your application.|
182183
|log/|Application log files.|
@@ -187,6 +188,7 @@ of the files and folders that Rails creates by default:
187188
|test/|Unit tests, fixtures, and other test apparatus. These are covered in [Testing Rails Applications](testing.html).|
188189
|tmp/|Temporary files (like cache and pid files).|
189190
|vendor/|A place for all third-party code. In a typical Rails application this includes vendored gems.|
191+
|.dockerignore|This file tells Docker which files it should not copy into the container.|
190192
|.gitattributes|This file defines metadata for specific paths in a git repository. This metadata can be used by git and other tools to enhance their behavior. See the [gitattributes documentation](https://git-scm.com/docs/gitattributes) for more information.|
191193
|.gitignore|This file tells git which files (or patterns) it should ignore. See [GitHub - Ignoring files](https://help.github.com/articles/ignoring-files) for more information about ignoring files.|
192194
|.ruby-version|This file contains the default Ruby version.|

0 commit comments

Comments
 (0)