AWS Elastic Container Service (ECS)
Overview
AWS Elastic Container Service (ECS) is a fully managed container orchestration service that enables you to run, manage, and scale contain...
Mostly used Docker commands collection by me.generic
⛶# remove all stopped containers
$ docker prune
# docker full cleanup
$ docker system prune -a --volumes
# check disk usage by docker
$ docker ...
Glossary
Docker
MySQL
Background
When launching a full-stack web application, whether locally or in production, sequencing the dependencies is critical. For example, if we start ser...
This guide ensures that every component is self-contained, using only the resources available on your air-gapped machine. That is No external access, no file transfers, everything generated locally.
...
Written by Paul Akinyemi✏️Docker’s exec command lets you run shell commands directly inside your running containers without forcing you to restart them. It's useful when you want to debug an err...
Why GraphQL?
GraphQL provides a powerful layer to unify data from various backend sources, including databases, REST APIs, and microservices, into a single, consistent API. It enables the cre...
What is Redis and Why Should We Use It?
Imagine a super-fast assistant that remembers everything instantly. That’s Redis! It’s an in-memory data store used as a database, cache, and messa...
Hey there, tech enthusiasts! 👋If you’ve ever thought:“Wouldn’t it be cool if I could just run an AI model locally with zero setup pain?”Well, let me introduce you to something magical: Dock...
Integrating GitHub Copilot models into your development workflow can significantly enhance productivity. By leveraging LiteLLM Proxy alongside OpenHands, you can seamlessly connect to various large la...
Tired of "No module found" errors in your Lambda functions? Architecture mismatches got you down? Let me show you how to build Lambda layers the right way! 💪
The Problem
Building Lambda lay...