This is a Rails application for managing a todo list
To run this application locally using Docker, follow the instructions below.
Make sure you have Docker and Docker Compose installed on your system.
- Clone this repository to your local machine.
- Build the Docker image:
docker-compose build
- Create the database:
docker-compose run web rails db:create
- Run the database migrations:
docker-compose run web rails db:migrate
- Start the application:
docker-compose up
Access the application in your web browser at http://localhost:3000.
docker-compose run web rspec