Microservice responsible for school management
$ docker-compose -f docker-compose.dev.yml up -d
$ dotnet restore
$ dotnet watch --project ./src/Vulder.School.Api
$ dotnet restore
$ dotnet build
$ dotnet publish ./src/Vulder.School.Api -c Release
$ docker build -t vulderapp/school:release .
$ docker run -p 80:80 -e MONGODB_CONNECTION_STRING=connection_string -e REDIS_CONNECTION_STRING=connection_string vulderapp/school:release