If you have just cloned this repository, you are almost there! The following command will get you started with a new Rails project that uses MySQL as the backend database:
docker-compose run web rails new -s -d mysql .
Alternatively, you can roll with the default SQLite database driver (not reccomended in most cases):
docker-compose run web rails new -s .
docker-compose up -d
Your project will be located at localhost:3000
docker-compose stop
/
docker-compose restart
docker-compose down
-