Prepare a .Net Core Console App for Docker

Last week I had the luck to attend the Microsoft Azure OpenHack in Amsterdam. We spent two and a half days learning a lot about kubernetes, Azure Container Services, Azure Container Registry, Azure OMS and Minecraft! In one of the challenges we decided to implement a sidecar container for logging purposes. So using...

Run ASP.NET Core on OpenShift

Today I’ll show you how to Run ASP.NET Core on OpenShift. First be aware of the following prerequisites: You’ll need a working Docker installation. If you are using Windows 10 you can get Docker for Windows here. Be sure to Disable TLS for 127.0.0.1:2375 for your Docker installation Be sure to set 172.30.0.0/16 as an...

Step by step: Kafka Pub/Sub with Docker and .Net Core

Last week I attended to a Kafka workshop and this is my attempt to show you a simple Step by step: Kafka Pub/Sub with Docker and .Net Core tutorial. Let’s start: Create a folder for your new project Open a command prompt an run 1mkdir kafka.pubsub.console 2cd kafka.pubsub.console Create a console project 1dotnet new...

Step by step: Couchbase Lite with .Net Core

Not long after writing Step by step: Couchbase with .Net Core I discovered Couchbase Lite, which is still in development, but it looks like a great solution for embedded NoSQL scenarios. So let’s start with this simple: Step by step: Couchbase Lite with .Net Core tutorial. Create a folder for your new project Open a...