π³ Docker: A Beginner's Guide to Containerization

Table of contents
- π Introduction: Why Docker?
- ποΈ Virtualization vs. Containerization
- π¨ What is Build in Docker?
- π Docker Terminologies
- π§ Docker Components
- ποΈ Project Building Using Docker
- ποΈ Multi-stage Docker Builds / Distroless Images
- π€ Docker Hub (Push/Tag/Pull)
- πΎ Docker Volumes: Persist Data
- π Docker Networking
- π Docker Compose: Multi-container Setup
- π Docker Scout: Security & Insights
- π― Conclusion
- π Additional Resources

π Introduction: Why Docker?
In the fast-paced world of software development, we need solutions that are scalable, portable, and efficient. Docker helps us achieve just that by enabling containerization β a lightweight alternative to traditional virtual machines.
β¨ Purpose of Docker
Docker simplifies application deployment by packaging everything needed (code, runtime, libraries) into a container that runs consistently across different environments. No more "it works on my machine" issues! π―
ποΈ Virtualization vs. Containerization
π½ Virtual Machines (VMs)
Requires a full OS for each application
Uses a hypervisor to manage VMs
Resource-intensive due to multiple OS instances
Slower startup and higher disk usage
π¦ Containers
Shares the host OS kernel
Isolated environments using Docker Engine
Lightweight and starts in seconds
More efficient resource usage
π― Key takeaway: Containers are faster, smaller, and more efficient compared to VMs.
π¨ What is Build in Docker?
Building a Docker image means creating a self-contained environment for your application. The process involves:
Writing a Dockerfile π
Using the
docker build
command π§Generating an image that can be run anywhere
Example of a simple Dockerfile:
# Use official Node.js image
FROM node:18
# Set working directory
WORKDIR /app
# Copy application files
COPY . .
# Install dependencies
RUN npm install
# Expose port
EXPOSE 3000
# Run the application
CMD ["node", "app.js"]
Run the build command:
docker build -t myapp .
Now you have a Docker image ready to be used! π
π Docker Terminologies
Image π· β A template containing an OS, dependencies, and your app
Container π¦ β A running instance of an image
Dockerfile π β Instructions to build a Docker image
Registry π’ β Stores and shares Docker images (like Docker Hub)
Volume πΎ β Persistent storage for Docker containers
Network π β Connects multiple containers for communication
π§ Docker Components
Docker Engine ποΈ β The core component that runs and manages containers
Docker CLI π β Command-line interface to interact with Docker
Docker Hub π β Cloud-based registry for sharing images
Docker Daemon βοΈ β Background service managing images and containers
ποΈ Project Building Using Docker
Let's containerize a simple Node.js application:
1οΈβ£ Create your Node.js app:
echo 'console.log("Hello, Docker!")' > app.js
2οΈβ£ Write a Dockerfile (as shown earlier)
3οΈβ£ Build the image:
docker build -t mynodeapp .
4οΈβ£ Run the container:
docker run -d -p 3000:3000 mynodeapp
Now your app runs inside a Docker container! π
ποΈ Multi-stage Docker Builds / Distroless Images
To make images smaller and more secure:
Multi-stage builds optimize images by removing unnecessary layers.
Distroless images eliminate OS packages, reducing vulnerabilities.
Example:
# Stage 1: Build
FROM node:18 AS builder
WORKDIR /app
COPY . .
RUN npm install && npm run build
# Stage 2: Runtime
FROM gcr.io/distroless/nodejs:18
WORKDIR /app
COPY --from=builder /app .
CMD ["node", "app.js"]
This results in a smaller, secure image! π―
π€ Docker Hub (Push/Tag/Pull)
- Tag your image:
docker tag myapp username/myapp:v1.0
- Push to Docker Hub:
docker push username/myapp:v1.0
- Pull an image:
docker pull username/myapp:v1.0
Now, your app is available anywhere! π
πΎ Docker Volumes: Persist Data
Containers are ephemeral β data is lost if a container stops. Use volumes to persist data.
docker volume create myvolume
docker run -v myvolume:/data myapp
Now, data remains even if the container stops! πΎ
π Docker Networking
Docker provides three default networks:
bridge β Default, containers communicate internally
host β Uses host machineβs network
none β Isolated container
To connect containers:
docker network create mynetwork
docker run --network=mynetwork myapp
π Docker Compose: Multi-container Setup
Define and run multiple containers using docker-compose.yml
:
version: '3'
services:
web:
image: nginx
ports:
- "80:80"
app:
build: .
depends_on:
- db
db:
image: postgres
environment:
POSTGRES_PASSWORD: secret
Run all services:
docker-compose up -d
π Docker Scout: Security & Insights
Docker Scout helps analyze images for vulnerabilities and best practices.
Install it:
docker scout quickview myapp
It provides security recommendations to improve your images. π
π― Conclusion
Docker is a game-changer in modern development! From building images to deploying secure containers, it streamlines workflows for developers. π
So, why wait? Start your Docker journey today and containerize like a pro! π³β¨
π Additional Resources
Docker Docs
Docker Hub
Docker Compose Guide
π’ Disclaimer
The content of this blog is intended for educational and informational purposes only. While I strive to provide accurate and up-to-date information about Docker, containerization, and related technologies, I recommend referring to official Docker documentation and other trusted sources for the latest updates.
Always follow best security practices when working with Docker in production environments. ππ³ Happy Learning!
Subscribe to my newsletter
Read articles from Priyanka Patil directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
