Docker

How To Secure React Applications Against XSS Attacks with HTTP-Only Cookies — step-by-step Docker tutorial on Progressive Robot

How To Secure React Applications Against XSS Attacks with HTTP-Only Cookies

In this tutorial, you will create a React application and mock API that implements a token-based authentication system set up in a local Docker container. You will exploit the token storage method with a cross-site scripting attack, then mitigate the issue with HTTP-only cookies. By the end of this tutorial, you’ll understand the security considerations needed to implement a functioning token-based authentication system alongside a React and Node web application.

Read more
How To Use the Docker Plugin for Visual Studio Code — step-by-step Docker tutorial on Progressive Robot

How To Use the Docker Plugin for Visual Studio Code

In this article we’ll use the Docker Plugin for Visual Studio Code. Docker allows us to package our applications into images and run them as containers on any platform that has Docker installed. We’ll use this plugin with two developer stacks: Node.js and Go.

Read more
Cómo instalar Docker Compose en Ubuntu 18.04 — step-by-step Docker tutorial on Progressive Robot

Cómo instalar Docker Compose en Ubuntu 18.04

Docker es una excelente herramienta para automatizar la implementación de aplicaciones de Linux dentro de contenedores de software, pero para aprovechar plenamente su potencial cada componente de una aplicación debería ejecutarse en su propio…

Read more
Docker Explicado: Cómo crear Contenedores de Docker corriendo en Memcached — step-by-step Docker tutorial on Progressive Robot

Docker Explicado: Cómo crear Contenedores de Docker corriendo en Memcached

Para la mayoría de las aplicaciones web, es extremadamente raro encontrar que el CPU sea el culpable de las peticiones abandonadas de HTTP o la sobrecarga de peticiones en el servidor web. Usualmente suele ser debido a una instalación de baja ingeniería sin capa de almacenamiento en caché, consumiendo todos los recursos de la memoria de datos en backend (es decir, la base de datos de su preferencia).

Read more
CHAT