tapmantwo / OpenRastaCore-Example

OpenRasta running on Kestrel in a Docker container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

To build and test

dotnet restore
dotnet build
dotnet run --project OpenRastaCore

You can test the api using this GET, double check the port number after running dotnet run.

GET http://localhost:5000/tasks
HTTP/1.1 200 OK
Date: Wed, 31 Jan 2018 18:20:07 GMT
Content-Type: application/json
Server: Kestrel
Content-Length: 55

[
  {
    "id": 1,
    "title": "Title 1"
  },
  {
    "id": 2,
    "title": "Title 2"
  }
]
docker-compose up --build

if after you are having troubles running again

docker-compose down

to clean up left over bits and run

docker-compose up --build --force-recreate

About

OpenRasta running on Kestrel in a Docker container


Languages

Language:C# 87.5%Language:Dockerfile 12.5%