{"id":15448,"date":"2016-12-26T16:15:11","date_gmt":"2016-12-26T14:15:11","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=15448"},"modified":"2017-12-19T12:24:07","modified_gmt":"2017-12-19T10:24:07","slug":"docker-remove-container-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/","title":{"rendered":"Docker Remove Container Example"},"content":{"rendered":"<p>This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the <code>rm<\/code> command, along with other options, for making the removal more flexible.<\/p>\n<p>For this example, Linux Mint 18 and Docker version 1.12.1 have been used.<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;OCKUMTbC259tpbxG&#8217;]<\/p>\n<div class=\"tip\"><strong>Tip<\/strong><br \/>\nYou may skip Docker installation and jump directly to the <a href=\"#section_2\"><strong>beginning of the example<\/strong><\/a> below.<\/div>\n<h2>1. Installation<\/h2>\n<p><strong>Note<\/strong>: Docker requires a 64-bit system with a kernel version equal or higher to 3.10.<\/p>\n<p>We can install Docker simply via <code>apt-get<\/code>, without the need of adding any repository, just installing the <code>docker.io<\/code> package:<\/p>\n<pre class=\"brush:bash\">sudo apt-get update\r\nsudo apt-get install docker.io<\/pre>\n<p>For more details, you can follow the <a href=\"https:\/\/www.webcodegeeks.com\/devops\/install-docker-ubuntu-tutorial\/\">Install Docker on Ubuntu Tutorial<\/a>.<\/p>\n<h2 id=\"section_2\">2. Setting up some containers<\/h2>\n<h3>2.1. Pulling a sample image<\/h3>\n<p>As you should know, before creating containers, we need Docker images.<\/p>\n<p>The easiest way to obtain a Docker image is to pull one from the Docker Hub. You don\u2019t have to have an account for pulling images.<\/p>\n<p>Let\u2019s pull a Busybox image:<\/p>\n<pre class=\"brush:bash\">docker pull busybox<\/pre>\n<h3>2.2. Creating some containers<\/h3>\n<p>Let&#8217;s create some containers:<\/p>\n<pre class=\"brush:bash\">docker run busybox\r\ndocker run --name=busybox2 busybox\r\ndocker run --name=busybox3 -i -t -d busybox<\/pre>\n<p><strong>Note<\/strong>: the difference between the last container with the previous two, is that we keep it alive (achieved with <code>-i<\/code> and <code>-t<\/code>, and then detached with\u00a0 <code>-d<\/code>).<\/p>\n<h2>3. Removing containers<\/h2>\n<p>Removing Docker containers is so easy:<\/p>\n<pre class=\"brush:bash\">docker rm &lt;container-name|container-id&gt;<\/pre>\n<p>First, let&#8217;s list our containers with:<\/p>\n<pre class=\"brush:bash\">docker rm &lt;container-id|container-name&gt;<\/pre>\n<p>Which, for this case, the output is:<\/p>\n<pre class=\"brush:bash;wrap-lines:false\">CONTAINER ID\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 IMAGE\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 COMMAND\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 CREATED\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0      STATUS\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 NAMES\r\nd80296418f95\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 busybox\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"sh\"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 About a minute ago\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Up 3 seconds\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 busybox3\r\ndf2424cd3d10\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 busybox\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"sh\"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 About a minute ago\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Exited (0) 4 seconds ago\u00a0\u00a0\u00a0  busybox2\r\n1ba6b04dbddf\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 busybox\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"sh\"\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0  About a minute ago\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Exited (0) 4 seconds ago\u00a0\u00a0\u00a0\u00a0 furious_cray<\/pre>\n<p>As we said, we can delete the containers by the id:<\/p>\n<pre class=\"brush:bash\">docker rm 1ba6b04dbddf<\/pre>\n<p>Or, also, by the name:<\/p>\n<pre class=\"brush:bash\">docker rm busybox2<\/pre>\n<p>If we try to remove the remaining container:<\/p>\n<pre class=\"brush:bash\">docker rm busybox3<\/pre>\n<p>Docker will throw an error:<\/p>\n<blockquote><p>Error response from daemon: You cannot remove a running container d80296418f95634e7cd8e90870d8592e73e014a9cd7d455a1683de6850205f0d. Stop the container before attempting removal or use -f<\/p><\/blockquote>\n<p>The message is clear enough: <strong>we cannot delete a running container<\/strong>, at least as the other containers. We can stop it and then delete it:<\/p>\n<pre class=\"brush:bash\">docker stop busybox3\r\ndocker rm busybox3<\/pre>\n<p>Or, force the removal with the <code>-f<\/code> (<code>--force<\/code>) option:<\/p>\n<pre class=\"brush:bash\">docker rm -f busybox3<\/pre>\n<h3>3.1. Remove all containers<\/h3>\n<p>Some times, we may want to delete all the containers, and doing it one by one can take a while, if we have quite many. For this, first, we have to use the <code>ps<\/code> command in the following way:<\/p>\n<pre class=\"brush:bash\">docker ps -a -q<\/pre>\n<p>The <code>-a<\/code> option is for listing all the containers, as you already probably know; and the <code>-q<\/code>,\u00a0 is for &#8220;quite&#8221; mode, i.e., to show only the container ids. For the containers we created before, the output would be just the following:<\/p>\n<pre class=\"brush:bash\">d80296418f95\r\ndf2424cd3d10\r\n1ba6b04dbddf<\/pre>\n<p>Knowing this, it&#8217;s all about running this command in a subshell, for <code>docker rm<\/code>:<\/p>\n<pre class=\"brush:bash\">docker rm $(docker ps -a -q)<\/pre>\n<p>Of course, we would get the same error as in the previous chapter if we execute that command with a running container, we will get an error.<\/p>\n<p>If we are completely sure of forcing the removal, we can use the <code>-q<\/code> option:<\/p>\n<pre class=\"brush:bash\">docker rm -f $(docker ps -a -q)<\/pre>\n<p>Or, if we prefer it, first stop all the containers and then remove them:<\/p>\n<pre class=\"brush:bash\">docker stop $(docker ps -a -q)\r\ndocker rm $(docker ps -a -q)<\/pre>\n<h3>3.2. Remove containers using filters<\/h3>\n<p>We have also available the option of removing containers using the filter option for the <code>ps<\/code> command, <code>-f<\/code> (<code>--filter<\/code>).<\/p>\n<p>The format would be the following:<\/p>\n<pre class=\"brush:bash\">docker rm $(docker ps -a -q -f &lt;pattern&gt;)<\/pre>\n<p>For example, for deleting containers that include the string <code>busybox<\/code> in their names:<\/p>\n<pre class=\"brush:bash\">docker rm $(docker ps -a -q -f \"name=busybox\")<\/pre>\n<h2>4. Summary<\/h2>\n<p>This tutorial has shown how to delete Docker containers, starting from the very basic way, and then seeing other interesting options, such as removing several containers at the same time, or using filters.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options, for making the removal more flexible. For this example, Linux Mint 18 and Docker version 1.12.1 have been used. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [ulp id=&#8217;OCKUMTbC259tpbxG&#8217;] Tip &hellip;<\/p>\n","protected":false},"author":160,"featured_media":10356,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[217],"class_list":["post-15448","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops","tag-docker"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Docker Remove Container Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,\" \/>\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.webcodegeeks.com\/devops\/docker-remove-container-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Docker Remove Container Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-12-26T14:15:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-19T10:24:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Toni\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Toni\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\"},\"author\":{\"name\":\"Toni\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/54a7be647b0b871cff41cbf3d2a95966\"},\"headline\":\"Docker Remove Container Example\",\"datePublished\":\"2016-12-26T14:15:11+00:00\",\"dateModified\":\"2017-12-19T10:24:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\"},\"wordCount\":539,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg\",\"keywords\":[\"Docker\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\",\"name\":\"Docker Remove Container Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg\",\"datePublished\":\"2016-12-26T14:15:11+00:00\",\"dateModified\":\"2017-12-19T10:24:07+00:00\",\"description\":\"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/devops\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Docker Remove Container Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/54a7be647b0b871cff41cbf3d2a95966\",\"name\":\"Toni\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g\",\"caption\":\"Toni\"},\"url\":\"https:\/\/www.webcodegeeks.com\/author\/julen-pardo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Docker Remove Container Example - Web Code Geeks - 2026","description":"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,","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.webcodegeeks.com\/devops\/docker-remove-container-example\/","og_locale":"en_US","og_type":"article","og_title":"Docker Remove Container Example - Web Code Geeks - 2026","og_description":"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,","og_url":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2016-12-26T14:15:11+00:00","article_modified_time":"2017-12-19T10:24:07+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg","type":"image\/jpeg"}],"author":"Toni","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Toni","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/"},"author":{"name":"Toni","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/54a7be647b0b871cff41cbf3d2a95966"},"headline":"Docker Remove Container Example","datePublished":"2016-12-26T14:15:11+00:00","dateModified":"2017-12-19T10:24:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/"},"wordCount":539,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg","keywords":["Docker"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/","url":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/","name":"Docker Remove Container Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg","datePublished":"2016-12-26T14:15:11+00:00","dateModified":"2017-12-19T10:24:07+00:00","description":"This example will show how to remove Docker containers, that is, instances of images. For this, we will be using the rm command, along with other options,","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2016\/01\/docker-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/devops\/docker-remove-container-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"DevOps","item":"https:\/\/www.webcodegeeks.com\/category\/devops\/"},{"@type":"ListItem","position":3,"name":"Docker Remove Container Example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/54a7be647b0b871cff41cbf3d2a95966","name":"Toni","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g","caption":"Toni"},"url":"https:\/\/www.webcodegeeks.com\/author\/julen-pardo\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/15448","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/160"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=15448"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/15448\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/10356"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=15448"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=15448"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=15448"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}