{"id":79444,"date":"2018-07-17T11:13:53","date_gmt":"2018-07-17T08:13:53","guid":{"rendered":"http:\/\/www.javacodegeeks.com\/?page_id=79444"},"modified":"2023-03-06T16:40:00","modified_gmt":"2023-03-06T14:40:00","slug":"docker-tutorials","status":"publish","type":"page","link":"https:\/\/www.javacodegeeks.com\/docker-tutorials","title":{"rendered":"Docker Tutorials"},"content":{"rendered":"<p><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png\"><img decoding=\"async\" class=\"aligncenter wp-image-34398 size-full\" style=\"border: none;\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png\" alt=\"\" width=\"400\" height=\"331\" srcset=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png 400w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo-300x248.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/a><\/p>\n<p>In this detailed Resource page, we feature an abundance of <strong>Docker Tutorials<\/strong>!<\/p>\n<p><a href=\"https:\/\/en.wikipedia.org\/wiki\/Docker_(software)\">Docker<\/a> is a computer program that performs operating-system-level virtualization also known as containerization.<\/p>\n<p>Docker is used to run software packages called &#8220;containers&#8221;. In a typical example use case, one container runs a web server and web application, while a second container runs a database server that is used by the web application. Containers are isolated from each other and use their own set of tools and libraries; they can communicate through well-defined channels. All containers use the same kernel and are therefore more lightweight than virtual machines. Containers are created from &#8220;images&#8221; which specify their precise contents. Images are often created by combining and modifying standard images downloaded from repositories.<\/p>\n<div class=\"tip\"><strong>Note<\/strong><br \/>\nIf you wish to build up your Docker knowledge first, check out our <a href=\"https:\/\/www.javacodegeeks.com\/2018\/02\/docker-tutorial-java-developers.html\">Docker Tutorial for Java Developers<\/a>.<\/div>\n<p>[ulp id=&#8217;MD25RnPuC2vrVItl&#8217;]<\/p>\n<h2>Docker Tutorials \u2013 Getting Started<\/h2>\n<h4>Simple examples on how to use Docker so that you can develop your own Docker based applications<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2017\/08\/docker-java-developers-introduction.html\">Introduction<\/a><br \/>\nDocker stormed into our industry and in no time dramatically changed many well-established software development and operational practices and patterns. These days pretty much every organization is using Docker (or equivalent of it), the brave ones even in production, and its adoption is growing at fantastic pace.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-tutorial-beginners\/\">Docker Tutorial for Beginners<\/a><br \/>\nIn this article we are going to explain the main features of Docker. We are going to briefly explain why containers are necessary, which are the main commands to use and how to use Docker in our integration tests.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-container-use-docker\/\">What is a Docker container \u2013 How to use Docker?<\/a><br \/>\nContainers, in general, and Docker in particular is quickly gaining in popularity. In this post, we will get some basics sorted out about the Docker container.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-hello-world-example\/\">Docker Hello World Example<\/a><br \/>\nIn this example we will explore different ways of running basic \u201cHello World\u201d containers in Docker. Creating a Docker Hello World container and getting it to work verifies that you have the Docker infrastructure set up properly in your development system.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/connect-docker-container-example\/\">Connect to Docker Container Example<\/a><br \/>\nThis example introduces how to create a Docker container and connect to it.<\/li>\n<\/ul>\n<h2>Docker Tutorials \u2013 Functions<\/h2>\n<h4>Examples on how to use Docker&#8217;s commands and functionalities<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2017\/09\/docker-java-developers-docker-command-line.html\">Docker over command line<\/a><br \/>\nWe are going to master the Swiss army knife of Docker, its command line tool of the same name docker and its best friend docker-compose.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2017\/10\/docker-java-developers-docker-http-rest.html\">Docker over HTTP\/REST<\/a><br \/>\nWe will go over a few key Docker Engine APIs and demonstrate how those could be consumed from your Java applications using Spotify Docker Client.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2017\/11\/docker-java-developers-build-docker.html\">Build on Docker<\/a><br \/>\nIt is time to apply the knowledge we have acquired to real-world Java projects, starting the discussion from the topic of how Docker affects the well-established build processes and practices.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2017\/12\/docker-java-developers-develop-docker.html\">Develop on Docker<\/a><br \/>\nIn this part we are going to focus more on how Docker impacts our development practices in a quite positive ways.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2018\/01\/docker-java-developers-test-docker.html\">Test on Docker<\/a><br \/>\nIn this section of the tutorial we are going to learn a couple of the frameworks which enormously simplify the integration, component and end-to-end testing of JVM-based applications by leveraging Docker and the tooling around it.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-compose-example\/\">Docker Compose Example<\/a><br \/>\nDocker Compose is a tool for defining and running multi-container Docker applications. With Compose, you define in a configuration file the set of docker containers that application requires an specific machine.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-build-example\/\">Docker Build Example<\/a><br \/>\nThe purpose of this tutorial is to explain how to build docker images using the docker build command and the supported building options. As we will see, docker allows to build images using different approaches.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-list-containers-examples-docker-ps\/\">Docker List Containers Examples (docker ps)<\/a><br \/>\nIn this post we will explore the command docker ps which is used to list Docker containers. We will also explore the various options of this command.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-environment-variables-example\/\">Docker Environment Variables Example<\/a><br \/>\nIn this post, we will discuss different ways to pass and set environment variables into a Docker container.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-test-example\/\">Docker Test Example<\/a><br \/>\nContinuous integration and continuous deployment has become one of the most common use cases of Docker early adopters. CI\/CD merges development with testing, allowing developers to build code collaboratively, submit the master branch, and check for issues. In this post, we will be using two containers one for redis and one python application. Next we will create a script to test our python application. An image will be created to run this test script in a container.<\/li>\n<\/ul>\n<h2>Docker Tutorials \u2013 Docker for Java Developers<\/h2>\n<h4>Examples on how to use Docker with Java<\/h4>\n<ul>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/introduction-docker-java-developers\/\">Introduction to Docker for Java Developers \u2013 Getting started with Docker<\/a><br \/>\nAccording the official definition of Docker, it is an open platform for building, shipping and running distributed applications. It gives programmers, development teams and operations engineers the common toolbox they need to take advantage of the distributed and networked nature of modern applications.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-tutorial-for-java-developers\/\">Docker Tutorial for Java Developers<\/a><br \/>\nIn this article, we will explain what is Docker and why do we use Docker. Going further we will learn some concepts of Docker and later, we will see how to create Dockerfile. We will then create Docker Image from Dockerfile. And finally, we will see how to run Docker images in the container using java code.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/core-java\/java-9-docker-example\/\">Java 9 Docker Example<\/a><br \/>\nThis article will introduce us to compiling and running a Java 9 example program using Docker technology. It will prime us in the origins of Docker technology, the differences with orthodox virtualization techniques, it\u2019s architecture, tooling and use thereof to build, and run a Java 9 program.<\/li>\n<\/ul>\n<h2>Docker Tutorials \u2013 Networking<\/h2>\n<h4>Learn how to efficiently implement networking containers using Docker<\/h4>\n<ul>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-as-a-service\/\">Docker as a Service<\/a><br \/>\nIn this post we will learn about Containers as a Service (CaaS) in general and how Docker realizes CaaS.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-container-networking-tutorial\/\">Docker Container Networking Tutorial<\/a><br \/>\nIn this post, we will learn the basics of Docker container networking in a single host setup. We will see the basic inrastructure provided by the Docker Engine for container networking, the \u201cDocker network\u201d family of commands, and the basics of creating user-defined networks.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/configuring-dns-docker\/\">Configuring DNS in Docker<\/a><br \/>\nThis post introduces Docker Engine\u2019s network feature in general and specifically introduces configuring DNS in containers.<\/li>\n<\/ul>\n<h2>Docker Tutorials \u2013 Integrations<\/h2>\n<h4>Learn how to use your Docker application with 3rd party frameworks, tools and services<\/h4>\n<ul>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2018\/02\/docker-java-developers-deploy-docker.html\">Deploy on Docker<\/a><br \/>\nIn this section of the tutorial we are going to glance over some of the most popular orchestration and cluster management engines (covering a couple of cloud offerings as well) which natively support deployment and lifecycle of the containerized applications.<\/li>\n<li><a href=\"https:\/\/www.javacodegeeks.com\/2018\/02\/docker-java-developers-continuous-integration-docker.html\">Continuous Integration on Docker<\/a><br \/>\nIn this part we are going to focus on the one of the increasingly important topics of continuous integration.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-kernel-requirements\/\">Docker Kernel Requirements<\/a><br \/>\nDocker is a containerization technology that provides OS level virtualization to applications. It isolates processes, storage, networking, and also provide security to services running within it\u2019s containers. To enable this, Docker depends on various features of the Linux Kernel. Let us get introduced to these Docker kernel requirements in this post.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/core-java\/selenium-grid-docker-tutorial\/\">Selenium Grid Docker Tutorial<\/a><br \/>\nIn this example set, we will be exploring the functionality of selenium grid on Docker container. We will be deploying the hub and nodes of Selenium Grid on the Docker container and will be linking together so that we could run test cases on the docker container.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/jenkins-docker-image-example\/\">Jenkins Docker Image Example<\/a><br \/>\nIn this post we will learn about how to install and configure Jenkins through the Jenkins Docker image.<\/li>\n<li><a href=\"https:\/\/examples.javacodegeeks.com\/devops\/docker\/docker-swarm-tutorial\/\">Docker Swarm Tutorial<\/a><br \/>\nThis post introduces Docker Swarm \u2013 the Docker Engine\u2019s Swarm mode. The Swarm mode enables multiple machines running Docker Engines to collaborate in a cluster. Let us explore the basics of this.<\/li>\n<\/ul>\n<p>[undereg]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this detailed Resource page, we feature an abundance of Docker Tutorials! Docker is a computer program that performs operating-system-level virtualization also known as containerization. Docker is used to run software packages called &#8220;containers&#8221;. In a typical example use case, one container runs a web server and web application, while a second container runs a &hellip;<\/p>\n","protected":false},"author":1340,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-79444","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Docker Tutorials - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/docker-tutorials\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Docker Tutorials - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/docker-tutorials\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-06T14:40:00+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials\",\"name\":\"Docker Tutorials - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/homepage-docker-logo.png\",\"datePublished\":\"2018-07-17T08:13:53+00:00\",\"dateModified\":\"2023-03-06T14:40:00+00:00\",\"description\":\"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials#primaryimage\",\"url\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/homepage-docker-logo.png\",\"contentUrl\":\"http:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/homepage-docker-logo.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/docker-tutorials#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docker Tutorials\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Docker Tutorials - Java Code Geeks","description":"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.javacodegeeks.com\/docker-tutorials","og_locale":"en_US","og_type":"article","og_title":"Docker Tutorials - Java Code Geeks","og_description":"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!","og_url":"https:\/\/www.javacodegeeks.com\/docker-tutorials","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_modified_time":"2023-03-06T14:40:00+00:00","og_image":[{"url":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@javacodegeeks","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials","url":"https:\/\/www.javacodegeeks.com\/docker-tutorials","name":"Docker Tutorials - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials#primaryimage"},"thumbnailUrl":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png","datePublished":"2018-07-17T08:13:53+00:00","dateModified":"2023-03-06T14:40:00+00:00","description":"Interested to learn more about Docker? Then check out our detailed Docker Tutorials! You can also download our FREE Docker Containerization Cookbook!","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/docker-tutorials"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials#primaryimage","url":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png","contentUrl":"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2014\/12\/homepage-docker-logo.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/docker-tutorials#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Docker Tutorials"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages\/79444","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/1340"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=79444"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/pages\/79444\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=79444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}