This project stores the very basic structure to start a ruby/rails project without any local installation
Make a copy form the file .env.sample
to .env
and fill in all the necessary env vars you'll need
Remember that changing the APP_NAME
env is mandatory
Start a new Rails project:
docker-compose run --rm web scripts/setup
It's important to rebuild the main image after initializing your project to install the necessary gems inside the image
docker-compose build web
After rebuilding the image your service should be ready to go
docker-compose up