How to deploy code for production in Docker and Kubernetes?

January 2, 2025

by Pranay

My Computer Specifications:

Step by Step Procedure for Docker installation:

  1. Download and install Docker for Desktop from the official site.
  2. Open the application and wait for the Machine Engine screen to load.
  3. Copy the path to your project folder and use change directory command in PowerShell.
  4. cd C:\Users\pranay\Downloads\livechat
  5. Run the below codes one after another. The build process takes quite some time to finish.
  6. docker build -t livechat .

    docker run livechat
  7. Now, the image is created and running in a container.

Step by Step Procedure for Kubernetes installation:

  1. Run the below commands one after another in PowerShell to enable Hyper-V.
  2. Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
  3. Install Chocolatey now.
  4. Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  5. To install Minikube using Chocolatey, run this code.
  6. choco install minikube -y
  7. To install kubectl, run this code.
  8. choco install kubernetes-cli -y
  9. Run these codes below to start Minikube.
  10. minikube start

    kubectl get nodes
  11. To connect to a remote Kubernetes cluster, first obtain the kubeconfig file from your Kubernetes administrator or cloud provider. Then, run this code below in PowerShell.
  12. $env:KUBECONFIG="path\to\kubeconfig.yaml"
    
  13. Finally, verify connectivity using this code.
  14. kubectl cluster-info
Author Avatar

Pranay Makkena

I am proficient in programming languages like Python and Java, React library and I also have expertise in marketing, including SEO and Social Media Marketing.