Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 332 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 332 Bytes

rails-on-docker

Minimal repo to start a dockerized Rails app from scratch without any local dependency.

Create a new rails project

Build the images

docker compose build

Enter into container to create the rails project

docker compose app bash
rails new .

Launch the container

docker compose up