The aim of the project is to make a copycat of dribbble's website applied to the ux-tribe. The goal is to make projects more visible than what's Google Drive exposed.
The project is based on docker & docker-compose. I followed the this tutorialin order to run a web application based on rails.
So to build the image
docker-compose build web
Then
docker-compose up web
in order to interact with rail from the docker image...
docker-compose run --rm web rails [your command]
to lunch the rails console :
docker-compose run --rm web rails c
docker-compose run --rm web rails db:migrate