/Simple-Blog---Dockerised-Rails-Application-with-PostgreSql

It is a simple blog application developed by using Ruby on Rails with PostgreSql

Primary LanguageRuby

STEPS TO FOLLOW

building app

sudo docker-compose build

starting server

sudo docker-compose up

creating database

sudo docker-compose run web rails db:create

for container's terminal

sudo docker-compose exec web bash

migrating rows in container's terminal

rails db:migrate

stopping server

sudo docker-compose down