{"id":9198,"date":"2022-01-05T14:15:01","date_gmt":"2022-01-05T08:45:01","guid":{"rendered":"https:\/\/www.skynats.com\/?p=9198"},"modified":"2025-10-28T11:35:26","modified_gmt":"2025-10-28T06:05:26","slug":"how-to-remove-docker-containers-docker-volumes","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/","title":{"rendered":"How To Remove Docker Containers\/Docker Volumes?"},"content":{"rendered":"\n<p>You can follow these steps to quickly remove Docker objects, like Docker containers and Docker volumes, that are consuming disk space. This will help any Docker user efficiently organize their system by eliminating unnecessary storage. Let&#8217;s look at each step for Docker containers remove in more detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-remove-docker-containers\"><strong>Remove Docker Containers<\/strong><\/h2>\n\n\n\n<p>When you attempt to prevent them, the docker containers will not remove themselves unless you use the \u2013rm flag on the container.<\/p>\n\n\n\n<p><strong>One or more containers must be removed:<\/strong><\/p>\n\n\n\n<p>To eliminate one or more Dockers, use the docker container rm command and consider the IDs of the containers you want to remove.<\/p>\n\n\n\n<p>To get a list of all containers, use the command docker container ls with the \u2013a option.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container ls \u2013a<\/code><\/pre>\n\n\n\n<p>It&#8217;s how the output appears:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CONTAINER ID  IMAGE                  COMMAND                 CREATED      STATUS                   NAMES \ncc3f2ff51cab  centos                 \"\/bin\/bash\"             2months ago  Created                  competent_nightingale\ncd20b396a061  solita\/ubuntu-systemd  \"\/bin\/bash -c 'exec \u2026\"  2months ago  Exited (137) 2months ago systemd\nfb62432cf3c1  ubuntu                 \"\/bin\/bash\"             3months ago  Exited (130) 3months ago jolly_mirzakhani<\/code><\/pre>\n\n\n\n<p>Pass the CONTAINER ID of the containers you want to delete to the docker container rm command if you know it. For example, to get rid of the first two containers in the above output, type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container rm cc3f2ff51cab cd20b396a061<\/code><\/pre>\n\n\n\n<p>If you receive an error message similar to the one below, it means the container is up and running. You must first stop the container before removing it.<\/p>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Error response from daemon: You cannot remove a running\ncontainer fc983ebf4771d42a8bd0029df061cb74dc12cb174530b2036987575b83442b47.\nStop the container before attempting removal or force remove.<\/code><\/pre>\n\n\n\n<p><strong>Remove all containers that have come to a halt:<\/strong><\/p>\n\n\n\n<p>Run docker container prune to delete all stopped containers,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container prune<\/code><\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>WARNING! This will remove all stopped containers.\nAre you sure you want to continue? &#91;y\/N] y<\/code><\/pre>\n\n\n\n<p>Now run the following command to get a list of all stopped (non-running) containers that were removed by the <a href=\"https:\/\/www.docker.com\/\">docker<\/a> container prune:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container ls -a --filter status=exited --filter\nstatus=created<\/code><\/pre>\n\n\n\n<p><strong>Filters can be used to remove containers:<\/strong><\/p>\n\n\n\n<p>The docker container prune command&#8217;s \u2013filter option enables you to delete containers that meet a specified condition.<\/p>\n\n\n\n<p>You can use more than one filter by using multiple \u2013filter options, and the currently supported filters are until and label.<\/p>\n\n\n\n<p>For example, run the command to delete all images created more than 12 hours ago:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container prune --filter \"until=12h\"<\/code><\/pre>\n\n\n\n<p><strong><strong>Halt<\/strong> and<\/strong> <strong>remove all containers:<\/strong><\/p>\n\n\n\n<p>To bring all running containers to a halt, use the command docker container halt with container IDs.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container stop $(docker container ls -aq)<\/code><\/pre>\n\n\n\n<p>Use the command to get a list of all containers:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container ls \u2013aq<\/code><\/pre>\n\n\n\n<p>Use the docker container rm command with the container ID list to delete once all containers have stopped running.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker container rm $(docker container ls -aq)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\"><strong>Remove Docker Volume<\/strong><\/h2>\n\n\n\n<p><strong>Getting rid of one or more volumes:<\/strong><\/p>\n\n\n\n<p>To clarify the ID of the one or more volumes you want to delete, run the command docker volume ls.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker volume ls<\/code><\/pre>\n\n\n\n<p>The output will look like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DRIVER     VOLUME NAME\nlocal      4e12af8913af888ba67243dec78419bf18adddc3c7a4b2345754b6db64293163\nlocal      terano<\/code><\/pre>\n\n\n\n<p>If you know the VOLUME NAME of the volumes you want to delete, use the docker volume rm command. Run the following command, for example, to remove the first volume shown in the above output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker volume rm\n4e12af8913af888ba67243dec78419bf18adddc3c7a4b2345754b6db64293163<\/code><\/pre>\n\n\n\n<p>If you see an error like the one below, it means that the volume is already being used by another container. So, before you remove the volume, you must first remove the container.<\/p>\n\n\n\n<p>Output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Error response from daemon: remove\n4e12af8913af888ba67243dec78419bf18adddc3c7a4b2345754b6db64293163: volume is in\nuse - &#91;c7188935a38a6c3f9f11297f8c98ce9996ef5ddad6e6187be62bad3001a66c8e]<\/code><\/pre>\n\n\n\n<p><strong>Remove all volumes that aren&#8217;t in use:<\/strong><\/p>\n\n\n\n<p>Run the command docker image prune to remove all of the volumes that aren&#8217;t used.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ docker volume prune<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>WARNING! This will remove all local volumes not used by atleast one container.\nAre you sure you want to continue? &#91;y\/N] <\/code><\/pre>\n\n\n\n<p>Use the \u2013f or \u2013force options to skip the prompt.<\/p>\n\n\n\n<p>Get <a href=\"https:\/\/www.skynats.com\/devops-support\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#035d84\" class=\"has-inline-color\"><em>Docker support<\/em><\/span><\/a> from experts. Our solutions help you get away with all the issues when you perform at any application stage.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can follow these steps to quickly remove Docker objects, like Docker containers and Docker volumes, that are consuming disk space. This will help any Docker user efficiently organize their system by eliminating unnecessary storage. Let&#8217;s look at each step for Docker containers remove in more detail. Remove Docker Containers When you attempt to prevent [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,127],"tags":[677,676],"class_list":["post-9198","post","type-post","status-publish","format-standard","hentry","category-blog","category-docker","tag-docker-container","tag-docker-volume"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Remove Docker Containers\/Docker Volumes?<\/title>\n<meta name=\"description\" content=\"Learn how to remove docker containers\/docker volumes. Immediately remove docker objects that are taking up disc space.\" \/>\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.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Remove Docker Containers\/Docker Volumes?\" \/>\n<meta property=\"og:description\" content=\"Learn how to remove docker containers\/docker volumes. Immediately remove docker objects that are taking up disc space.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-05T08:45:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-28T06:05:26+00:00\" \/>\n<meta name=\"author\" content=\"Tony\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tony\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/\"},\"author\":{\"name\":\"Tony\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/1398d4641035daa52ed8b827e0aafdeb\"},\"headline\":\"How To Remove Docker Containers\\\/Docker Volumes?\",\"datePublished\":\"2022-01-05T08:45:01+00:00\",\"dateModified\":\"2025-10-28T06:05:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/\"},\"wordCount\":511,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"docker container\",\"docker volume\"],\"articleSection\":[\"Blog\",\"docker\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/\",\"name\":\"How To Remove Docker Containers\\\/Docker Volumes?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-01-05T08:45:01+00:00\",\"dateModified\":\"2025-10-28T06:05:26+00:00\",\"description\":\"Learn how to remove docker containers\\\/docker volumes. Immediately remove docker objects that are taking up disc space.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-remove-docker-containers-docker-volumes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Remove Docker Containers\\\/Docker Volumes?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/1398d4641035daa52ed8b827e0aafdeb\",\"name\":\"Tony\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g\",\"caption\":\"Tony\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Remove Docker Containers\/Docker Volumes?","description":"Learn how to remove docker containers\/docker volumes. Immediately remove docker objects that are taking up disc space.","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.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/","og_locale":"en_US","og_type":"article","og_title":"How To Remove Docker Containers\/Docker Volumes?","og_description":"Learn how to remove docker containers\/docker volumes. Immediately remove docker objects that are taking up disc space.","og_url":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2022-01-05T08:45:01+00:00","article_modified_time":"2025-10-28T06:05:26+00:00","author":"Tony","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Tony","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/"},"author":{"name":"Tony","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/1398d4641035daa52ed8b827e0aafdeb"},"headline":"How To Remove Docker Containers\/Docker Volumes?","datePublished":"2022-01-05T08:45:01+00:00","dateModified":"2025-10-28T06:05:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/"},"wordCount":511,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["docker container","docker volume"],"articleSection":["Blog","docker"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/","url":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/","name":"How To Remove Docker Containers\/Docker Volumes?","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2022-01-05T08:45:01+00:00","dateModified":"2025-10-28T06:05:26+00:00","description":"Learn how to remove docker containers\/docker volumes. Immediately remove docker objects that are taking up disc space.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-remove-docker-containers-docker-volumes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Remove Docker Containers\/Docker Volumes?"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/1398d4641035daa52ed8b827e0aafdeb","name":"Tony","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f90e801961478d690f50507d9e19eeecebabab8ab7dfdab7d2d2431114c6acd9?s=96&d=mm&r=g","caption":"Tony"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/9198","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=9198"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/9198\/revisions"}],"predecessor-version":[{"id":16399,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/9198\/revisions\/16399"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=9198"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=9198"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=9198"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}