Docker

Introduction to Containers — step-by-step Docker tutorial on Progressive Robot

Introduction to Containers

A container is a unit of software that packages code with its required dependencies in order to run in an isolated, controlled environment. This allows you to run an application in a way that is predictable, repeatable, and without the uncertainty of inconsistent code execution across diverse development and production environments. Containers enable new design paradigms by strengthening the separation of application code and infrastructure code.

Read more
Webinar Series: Deploying and Scaling Microservices in Kubernetes — step-by-step Docker tutorial on Progressive Robot

Webinar Series: Deploying and Scaling Microservices in Kubernetes

In this tutorial, you will apply the concepts from the previous tutorials to build, deploy, and manage an end-to-end microservices application in Kubernetes. The sample web application you’ll use in this tutorial is a “todo list” application written in Node.js that uses MongoDB as a database. You’ll build a container image for this app from a Dockerfile, and push the image to Docker Hub, and then deploy it to your cluster. Then you’ll scale the app to meet increased demand.

Read more
Cómo crear una aplicación Node.js con Docker — step-by-step Docker tutorial on Progressive Robot

Cómo crear una aplicación Node.js con Docker

La plataforma Docker permite a los desarrolladores empaquetar y ejecutar aplicaciones como contenedores. Un contenedor es un proceso aislado que se ejecuta en un sistema operativo compartido, ofreciendo una alternativa más ligera para máquinas…

Read more
How To Build a REST API with Prisma and PostgreSQL — step-by-step Docker tutorial on Progressive Robot

How To Build a REST API with Prisma and PostgreSQL

Prisma is an open source database toolkit. In this tutorial, you will build a REST API for a small blogging application in TypeScript using Prisma and a PostgreSQL database. At the end of the tutorial, you will have a web server running locally on your machine that can respond to various HTTP requests and read and write data in the database.

Read more
CHAT