<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Docker on My Tech Blog</title><link>https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/tags/docker/</link><description>Recent content in Docker on My Tech Blog</description><generator>Hugo</generator><language>en</language><lastBuildDate>Fri, 10 Mar 2023 00:00:00 +0000</lastBuildDate><atom:link href="https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/tags/docker/index.xml" rel="self" type="application/rss+xml"/><item><title>Docker for Java Developers</title><link>https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/blog/docker-for-java-developers/</link><pubDate>Fri, 10 Mar 2023 00:00:00 +0000</pubDate><guid>https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/blog/docker-for-java-developers/</guid><description>&lt;p&gt;Docker has revolutionized how we develop, test, and deploy applications. For Java developers, Docker offers a consistent environment across development, testing, and production.&lt;/p&gt;
&lt;h2 id="getting-started-with-docker"&gt;Getting Started with Docker&lt;/h2&gt;
&lt;p&gt;Before diving into Docker for Java applications, make sure you have Docker installed on your machine.&lt;/p&gt;
&lt;h2 id="dockerizing-a-spring-boot-application"&gt;Dockerizing a Spring Boot Application&lt;/h2&gt;
&lt;p&gt;Let&amp;rsquo;s look at how to containerize a Spring Boot application:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;FROM eclipse-temurin:17-jdk-alpine
VOLUME /tmp
COPY target/*.jar app.jar
ENTRYPOINT [&amp;#34;java&amp;#34;,&amp;#34;-jar&amp;#34;,&amp;#34;/app.jar&amp;#34;]
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Docker simplifies the development, testing, and deployment of Java applications by providing consistent environments and isolation.&lt;/p&gt;</description></item><item><title>Kubernetes for Beginners</title><link>https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/blog/kubernetes-for-beginners/</link><pubDate>Wed, 25 Jan 2023 00:00:00 +0000</pubDate><guid>https://sivaprasadreddy.github.io/hugo-tech-blog-modern-theme/blog/kubernetes-for-beginners/</guid><description>&lt;p&gt;Kubernetes has become the de facto standard for container orchestration. This guide will help beginners understand the key concepts and get started with Kubernetes.&lt;/p&gt;
&lt;h2 id="what-is-kubernetes"&gt;What is Kubernetes?&lt;/h2&gt;
&lt;p&gt;Kubernetes is an open-source platform for automating deployment, scaling, and management of containerized applications.&lt;/p&gt;
&lt;h2 id="key-concepts"&gt;Key Concepts&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Pods&lt;/li&gt;
&lt;li&gt;Services&lt;/li&gt;
&lt;li&gt;Deployments&lt;/li&gt;
&lt;li&gt;ConfigMaps and Secrets&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="conclusion"&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Kubernetes provides powerful tools for managing containerized applications at scale.&lt;/p&gt;</description></item></channel></rss>