DevOps
🐳 Docker Cheat Sheet
Common Docker Commands Start Docker Linux: systemctl start docker macOS: open -a Docker Check Docker Version docker --version Working with Containers List Running Containers docker ps List All Containers (Running + Stopped) docker ps -a Run a Container (starts and attaches) docker run …
Vertical vs Horizontal …
In the world of system architecture, scaling is a critical concept that allows your application to handle increased load. Scaling can be achieved through two main strategies: vertical scaling and horizontal scaling. :bar_chart: Vertical vs Horizontal Scaling Vertical scaling, also known as scaling …
Understanding Docker and …
In today’s software development landscape, Docker and containerization have become integral to creating scalable, portable, and efficient applications. :whale: What is Docker? Docker is an open-source platform that automates the deployment, scaling, and management of applications within …