diff --git a/meet_docker.html b/meet_docker.html index 01d7c5b..8e576d6 100644 --- a/meet_docker.html +++ b/meet_docker.html @@ -119,7 +119,7 @@ Let’s say you've developed a Python project on your Ubuntu server, but your friend has a Windows machine with a different version of Python. No worries—just share the Docker image you’ve built. It includes dependencies like Ubuntu, Python, and the necessary commands to install the required packages. All your friend has to do is run the image and boom! The Python application is now running on your friend's machine, without the need for a separate local system or VM for Ubuntu, or installing a different Python version. This provides a solution for environmental inconsistency. Due to portable in nature we can use this image build and run the containers in multiple systems.

Docker images can be pulled from docker registery (the site is called Docker hub) or can be manually created using Dockerfile. -
+          
                 FROM ubuntu:latest
                 WORFKDIR /app 
                 RUN apt-get update && \
diff --git a/style.css b/style.css
index 626875f..bcb1b60 100644
--- a/style.css
+++ b/style.css
@@ -180,6 +180,10 @@ a:hover {
   padding-left: 0; /* Removes the default indentation */
   margin: 0; /* Removes any default margin */
 }
+.code{
+    font-size: clamp(1rem, 1.5vw, 2rem); /* Min 0.8rem, scales with viewport width, max 1rem */
+  }
+
 
 
 /* Responsive  */
@@ -222,7 +226,4 @@ a:hover {
     padding: 5px;
   }
 
-  .code{
-    font-size: clamp(1rem, 1.5vw, 2rem); /* Min 0.8rem, scales with viewport width, max 1rem */
   }
-}