How to use EF Core as an In-memory database in ASP.NET Core for testing
Entity Framework Core allows you to store and retrieve data to and from an in-memory database. It’s a quick and easy way to test your methods ASP.NET Core web applications…
Implement Mediator Pattern with MediatR in C#
The Mediator pattern is a behavioral design pattern that aims to minimize complex dependencies among objects. This pattern limits direct communication between entities, compelling them to interact solely through a…
Debugging Multiple .NET Projects in VS Code
It is quite common, especially in medium/large projects, to have to run multiple projects in debug mode at the same time. The simplest example is a frontend and its services…
How to Create Spring RESTful API without using Spring Boot
Most Spring Tutorials available online teach you how to create/secure a Rest API with Spring boot. However, sometimes there will be specific use cases where you will need to create/secure…
How to Share Data Between Docker Containers
Docker allows users to run various applications isolated from the host computer, without the necessity of having separate operating systems for them to run on. Instead, you install and manage…
How to Create Docker Image with Dockerfile
A Dockerfile is a script with instructions on how to build a Docker image. These instructions are, in fact, a group of commands executed automatically in the Docker environment to…
Docker Commands Cheat Sheet
Like any other software, Docker introduces users to new terminology. Users need to get acquainted with concepts such as Dockerfiles, images, containers, and other Docker-specific terms. Once you have mastered…
Docker Container Tutorials
In this Docker Tutorial, you’ll learn how you can use Docker to package and distribute your applications. Installation Introduction Services Databases
MySQL Docker Container Tutorial: How to Set Up & Configure
MySQL is a well-known open-source relational database management system and one of the most popular web server solutions. It stores and structures data in a meaningful manner, ensuring easy accessibility.…
How To Deploy a Go Web Application with Docker and Nginx on Ubuntu 22.04
In this tutorial, you will deploy an example Go web application with gorilla/mux as the request router and Nginx as the web server, all inside Docker containers that are orchestrated…