Categories

4 articles in Docker
How to Deploy MockServer to Azure using Terraform and Docker
Deploying applications using Terraform and Docker makes it extremely quick and easy to setup software in Azure. In this tutorial I use the MockServer docker image to deploy an application that can be used to mock REST API calls during development phases. Checkout the MockServer docs for more… 
Setting Up a Mock OAuth2/OIDC Server with IdentityServer4 and Docker
The Soluto Github organisation has wrapped up IdentityServer4 in a docker image which can be used to provide an OAuth2 and OIDC standards compliant server for development and testing scenarios. oidc-server-mock Getting Started The following docker compose file can be used to setup a standard… 
Setup Keycloak OAuth2/OIDC Provider for local dev
Keycloak is a full featured open source Identity and Access Management solution. Its written in Java and deployed with Docker meaning you can get up and running in minutes. It is ideal for for local development scenarios where we need a standards compliant (SAML 2.0, OAuth 2.0 or OpenID Connect… 
Dockerize an ASP.NET Core Application
Visual Studio provides excellent support for docker containers, but this does mean some of the complexities of the technology can get masked. In this tutorial we walk through the basics of building a docker container for a simple ASP.NET Core Web Application so that we can better understand the…