coderie / coderie-site

The Coderie User Group Website/Application
7 stars 2 forks source link

ScreenShot

How to bootstrap the application

Installation

Docker Installation

Requirements

Install Steps

Working with Rails

Rails is now inside of the container so commands will look like:

docker-compose run web rails generate scaffold post

Bundled Dependencies

Dependencies are also built into the container. This means that the container could ship off to production (doesn't have to) in it's state and have the exact dependencies shipped with it. This creates a bit more work though. Instead of just bundle install after gem changes, you will need to run the following:

docker-compose build

Additional Docs