• Docker Compose 101: use it on Simple .Net Core API

    Docker Compose is a tool that you will use to define and share multi-container applications. This means you can run a project with multiple containers using a single source, you will need to create a YAML file to define the services you need and run with a single command. The docker-compose.override.yml is the configuration file where you…

    Read more…

  • A simple introduction to Kubernetes

    What you will learn: In this tutorial you will learn: Kubernetes Service and Deployment are two fundamental components of the Kubernetes ecosystem. The Service acts as the gateway for communication and load balancing. On the other hand, Deployment orchestrates the management and scaling of your application’s replicas. Note: if kubectl apply -f deploy.yml doesn’t work,…

    Read more…

  • Build and Push Docker images to Docker hub registry

    Requirements: Should read first the blog Dockerize Simple .Net Core API in order for us to have the image that we are going to push to docker hub. This can be done by just three simple steps:

    Read more…