Skip to content

Commit

Permalink
code
Browse files Browse the repository at this point in the history
  • Loading branch information
JKP1008shine committed Aug 20, 2024
1 parent d83a446 commit 3e2e8de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meet_docker.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 <span class="highlight-purple">environmental inconsistency</span>. Due to portable in nature we can use this image build and run the containers in multiple systems.
<br><br>
Docker images can be pulled from docker registery (the site is called Docker hub) or can be manually created using Dockerfile.
<pre class="highlight-purple content-sub code">
<pre class="highlight-purple content-sub">
FROM ubuntu:latest
WORFKDIR /app
RUN apt-get update && \
Expand Down
7 changes: 4 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
}
}

0 comments on commit 3e2e8de

Please sign in to comment.