# Containerization and Container Orchestration
Project Review Develop a microservices-based weather application. The implementation involves creating two microservices; one for fetching weather data and another for diplaying it. The primary obj...

Source: DEV Community
Project Review Develop a microservices-based weather application. The implementation involves creating two microservices; one for fetching weather data and another for diplaying it. The primary objectives include containerizing these microservices using Docker, deploying them to a Kubernetes cluster, and accessing them through Nginx. Phase 1: Basic Frontend Application with Docker and Kubernetes Hypothetical Use Case We are deploying a simple static website (HTML and CSS) for a company's landing page. The goal is to containerize this application using Docker, deploy it to a Kubernetes cluster, and access it through Nginx. Task Set up the project Create a new project directory. 'mkdir my-weather-app' Inside the directory, create HTML file ('index.html') and a CSS file ('styles.css'). 'touch index.html' Copy and paste the code snippet below. ) 'touch styles.css' Copy and paste the code snippet below. Initialize Git. Initialize a Git repository in the project directory. 'git init' Git Com