blog.diegocornejo.comSetting Up a Monitoring Stack in Docker ComposeThis guide provides instructions on setting up a comprehensive monitoring stack using Grafana, Prometheus, Node Exporter, cAdvisor and Loki. These components are orchestrated with Docker Compose and exposed via an NGINX reverse proxy, making them acc...Jul 23, 2024·2 min read
blog.diegocornejo.comDeploy Jupyter Lite on Vercel / NetlifyIntroduction: Jupyter Notebook is an incredibly versatile tool for working with code and data interactively and collaboratively. In this article, I'll guide you through an exciting journey that begins with an introduction to Jupyter and its Notebooks...Nov 7, 2023·2 min read
blog.diegocornejo.comDockerize a Rect App (vite) inside a TurborepoUltra-Light HTTP Server with Busybox HTTPD Applet Description: This Docker image is designed to provide an ultra-lightweight HTTP server optimized for efficiently serving static files. It is based on the Busybox system and utilizes the Applet HTTPD f...Oct 24, 2023·2 min read
blog.diegocornejo.comExport AWS SSM Parameter Store as Environment Variables with Bash1. Add parameters to AWS System Manager aws ssm put-parameter --name "/my-app/my-param-name" --value "my-param-value" --type "String" Replace "/my-app/my-param-name" with the desired path and name for the parameter. Note that the path must begin wit...Apr 28, 2023·3 min read
blog.diegocornejo.comPublish Express API to EKS FargateImportant: This tutorial assume you already has installed and know how to use, aws cli, kubectl and eksctl Create and Setup Cluster and required policies 1. Create Fargate Cluster eksctl create cluster --region us-west-1 --name express-api --version ...Mar 26, 2023·3 min read