Create a New Rails Project With Docker
Sometimes you may need to communicate between services defined across multiple compositions I.E services that Docker will start on isolated networks. To enable our services to talk one another as if they had all been defined in one docker-compose.yml we can leverage Docker’s user-defined networks
, in this case the Bridged
network.
Create Rails Project
- Start a Ruby container.
docker run -it -v $PWD:/opt ruby:latest bash
- Install Rails.
gem install Rails
- Create a new Rails project.
cd opt && rails new {PROJECT_NAME}
Configure Rails Project
-
Uncomment the mini_racer gem in the Gemfile.
-
Add Postgres Gem to the Gemfile
gem 'pg', '~> 0.21.0'
- Replace contents of config/database.yml with:
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username: user
password: password
host: db
development:
<<: *default
database: {PROJECT_NAME}-dev
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: {PROJECT_NAME}-test
- In bin/setup, replace:
system! 'bin/rails restart'
with:
system! 'bin/rails server'
- Fire it up!
cd docker && docker-compose up