The conference's library
- Ruby (version located on Gemfile)
- Docker (follow the Docker Guide for your OS)
- Docker Compose (find how to install it in the Docker Compose Guide)
Run the following commands
docker-compose build
docker-compose run web yarn install
docker-compose run web rake db:create
docker-compose run web rake db:migrate
docker-compose run web rake db:seed
docker-compose up
If you have problems running the docker-compose
commands you may want to try running them with sudo
in order to fix the problem.
If you encounter an issue regarding Ruby versions, make sure you have the Ruby version indicated in the Gemfile and DockerFile (both should be equal) and if you still have issues you can try running gem update bundler