AKAsit Kumar Mohantyinasitmohanty.hashnode.dev·Nov 17, 2025 · 3 min readKubernetes BasicsKubernetes operates on a client server modek with a centralized control plane governing the cluster’s state and a set of worker Nodes running workloads. At a high level, a user (often a developer) interacts with the Kubernetes cluster through command...00
AKAsit Kumar Mohantyinasitmohanty.hashnode.dev·Nov 16, 2025 · 4 min readDocker Basics Part7Docker volumes are the preferred mechanism for persisting data generated by and used by Docker containers. Docker provides 3 main options for storing data. Volumes: The preferred mechanism for persisting data in Docker. Bind mounts: Connect a speci...00
AKAsit Kumar Mohantyinasitmohanty.hashnode.dev·Nov 15, 2025 · 5 min readDocker Basics Part6Docker networks enable containers to communicate with each other and the outside world. Docker provides several built-in network drivers. labex:~/ $ docker network ls NETWORK ID NAME DRIVER SCOPE d3ccb3671187 bridge bridge local 9...00
AKAsit Kumar Mohantyinasitmohanty.hashnode.dev·Nov 10, 2025 · 10 min readDocker Basics Part5Let’s look at a dockerfile example where we are trying to run a python application. # Use an official Python runtime as the base image FROM python:3.9-slim # Set the working directory in the container WORKDIR /app # Set an environment variable ENV ...00
AKAsit Kumar Mohantyinasitmohanty.hashnode.dev·Nov 10, 2025 · 7 min readDocker Basics Part4Custom Docker Image Create a folder named docker in vs code. Then add a file named ‘Dockerfile’ with no extension. ##Inside Dockerfile FROM nginx COPY index.html /usr/share/nginx/html/ Understanding the Dockerfile: FROM nginx: This line specifies t...00