{"id":15235,"date":"2025-07-15T18:33:41","date_gmt":"2025-07-15T13:03:41","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15235"},"modified":"2025-07-15T18:39:53","modified_gmt":"2025-07-15T13:09:53","slug":"how-to-fix-docker-error-bind-address-already-in-use","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/","title":{"rendered":"How to Fix Docker Error \u201cbind: address already in use\u201d"},"content":{"rendered":"\n<p>When stuck with this Docker error:<\/p>\n\n\n\n<p><em><strong>Docker Error \u201cbind: address already in use\u201d<\/strong><\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This is a common issue that Docker users frequently encounter, especially when running multiple containers or services on the same machine.<\/li>\n\n\n\n<li>Typically, this error signifies that another process on the host system is already using the port your container is attempting to bind to.<br><\/li>\n<\/ul>\n\n\n\n<p>In this guide, we\u2019ll break down the root cause of the Docker Error \u201cbind: address already in use\u201d and walk you through several effective ways to resolve it. Whether you&#8217;re working on a development setup or deploying containers in production, these solutions will help you get your containers up and running smoothly.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When starting a Docker container, you might see an error like this:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>Error response from daemon: Cannot start container: listen tcp 0.0.0.0:9306: bind: address already in use<\/code><\/pre>\n\n\n\n<p>This means Docker is trying to bind a container port to a host port, but that host port is already occupied\u2014usually by another process or container.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-solution-steps-docker-error-bind-address-already-in-use\">Solution Steps\u2014Docker Error \u201cbind: address already in use\u201d<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-1-kill-the-process-using-the-port\"><strong>1. Kill the Process Using the Port<\/strong><\/h3>\n\n\n\n<p>To run the container successfully, you must either stop the process using the port or change the port Docker uses.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\" id=\"h-step-by-step\"><strong>Step-by-step:<\/strong><\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check what is using the port (replace 8080 with your actual port):<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo lsof -i tcp:8080<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You\u2019ll get output showing the process ID (PID) using that port.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Confirm it\u2019s a non-essential process, then kill it:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo kill -9 &lt;PID><\/code><\/pre>\n\n\n\n<p>Replace the &lt;PID&gt; with actual process id obtained from previous command<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>2. Change to Another Port in Docker<\/strong><\/h3>\n\n\n\n<p>If the port is essential to your system (e.g., used by another app you need), update your Docker setup to use a different port.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Find a free TCP port, e.g., 8086<\/li>\n\n\n\n<li>Delete the existing Docker container:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>docker rm &lt;docker_name><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run your container again with a different host port:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>docker run -d -p 8086:8080 -p 55555:55555 -p 80:80 --shm-size=2g --env username_admin_globalaccesslevel=admin --env username_admin_password=admin --name docker_name solace\/solace-pubsub-standard<\/code><\/pre>\n\n\n\n<p>When Docker creates a container, it binds the ports at creation time. To change them, you must remove and recreate the container.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Restart Apache (if host was rebooted)<\/strong><\/h3>\n\n\n\n<p>After a system reboot, services like <a href=\"https:\/\/www.apache.org\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Apache<\/mark><\/a> may occupy ports Docker wants to use.<\/p>\n\n\n\n<p>You can restart Apache to clear any binding issues:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/etc\/init.d\/apache2 restart\n or\nsudo apachectl -k restart<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Stop Nginx if Running Globally<\/strong><\/h3>\n\n\n\n<p>Sometimes, Nginx might be running and occupying a conflicting port. To stop Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nginx -s stop<\/code><\/pre>\n\n\n\n<p>To check if the same container is running elsewhere or if Docker is holding onto the port:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker-compose down<\/code><\/pre>\n\n\n\n<p>Stop Docker Compose container (if using docker-compose.yml)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker rm -fv $(docker ps -aq)<\/code><\/pre>\n\n\n\n<p>Remove all containers forcefully<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo lsof -i -P -n | grep &lt;port number><\/code><\/pre>\n\n\n\n<p>See who is using the port<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Summary<\/strong><\/h2>\n\n\n\n<p>In summary, the Docker error \u201cbind: address already in use\u201d is most commonly caused by a port conflict on your host system. To resolve it, you can identify and terminate the process occupying the port, change the port in your Docker configuration, restart services like Apache or Nginx that might be using the port, or remove existing Docker containers to start with a clean slate. With these steps, you\u2019ll be able to eliminate the conflict and get your container running smoothly.<\/p>\n\n\n\n<p>Are you still seeing the &#8220;bind: address already in use&#8221; Docker error? Don&#8217;t let technical difficulties hold you back. For a prompt and dependable answer, get in touch with our knowledgeable <a href=\"https:\/\/www.skynats.com\/devops-support\/\">DevOps Support Services<\/a> team. We are available around-the-clock to assist with full-stack container administration and Docker problems.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When stuck with this Docker error: Docker Error \u201cbind: address already in use\u201d In this guide, we\u2019ll break down the root cause of the Docker Error \u201cbind: address already in use\u201d and walk you through several effective ways to resolve it. Whether you&#8217;re working on a development setup or deploying containers in production, these solutions [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1067,1064,1066],"class_list":["post-15235","post","type-post","status-publish","format-standard","hentry","category-blog","tag-bind-address-already-in-use","tag-devops-support-services","tag-docker-error"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Docker Error &quot;bind: address already in use&quot;\u2014Quick Fix Guide<\/title>\n<meta name=\"description\" content=\"Struggling with Docker Error &quot;bind: address already in use&quot;? Discover easy fixes now\u2014solve it fast and get your containers running!\" \/>\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-fix-docker-error-bind-address-already-in-use\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix Docker Error \u201cbind: address already in use\u201d\" \/>\n<meta property=\"og:description\" content=\"Struggling with Docker Error &quot;bind: address already in use&quot;? Discover easy fixes now\u2014solve it fast and get your containers running!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/\" \/>\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=\"2025-07-15T13:03:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-15T13:09:53+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\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=\"Jishnu V\" \/>\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-fix-docker-error-bind-address-already-in-use\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Fix Docker Error \u201cbind: address already in use\u201d\",\"datePublished\":\"2025-07-15T13:03:41+00:00\",\"dateModified\":\"2025-07-15T13:09:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/\"},\"wordCount\":529,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"\u201cbind: address already in use\u201d\",\"devops support services\",\"Docker Error\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/\",\"name\":\"Docker Error \\\"bind: address already in use\\\"\u2014Quick Fix Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-07-15T13:03:41+00:00\",\"dateModified\":\"2025-07-15T13:09:53+00:00\",\"description\":\"Struggling with Docker Error \\\"bind: address already in use\\\"? Discover easy fixes now\u2014solve it fast and get your containers running!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-fix-docker-error-bind-address-already-in-use\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix Docker Error \u201cbind: address already in use\u201d\"}]},{\"@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\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Docker Error \"bind: address already in use\"\u2014Quick Fix Guide","description":"Struggling with Docker Error \"bind: address already in use\"? Discover easy fixes now\u2014solve it fast and get your containers running!","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-fix-docker-error-bind-address-already-in-use\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix Docker Error \u201cbind: address already in use\u201d","og_description":"Struggling with Docker Error \"bind: address already in use\"? Discover easy fixes now\u2014solve it fast and get your containers running!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-07-15T13:03:41+00:00","article_modified_time":"2025-07-15T13:09:53+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Fix Docker Error \u201cbind: address already in use\u201d","datePublished":"2025-07-15T13:03:41+00:00","dateModified":"2025-07-15T13:09:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/"},"wordCount":529,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["\u201cbind: address already in use\u201d","devops support services","Docker Error"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/","url":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/","name":"Docker Error \"bind: address already in use\"\u2014Quick Fix Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-07-15T13:03:41+00:00","dateModified":"2025-07-15T13:09:53+00:00","description":"Struggling with Docker Error \"bind: address already in use\"? Discover easy fixes now\u2014solve it fast and get your containers running!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-fix-docker-error-bind-address-already-in-use\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix Docker Error \u201cbind: address already in use\u201d"}]},{"@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\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15235","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15235"}],"version-history":[{"count":3,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15235\/revisions"}],"predecessor-version":[{"id":15243,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15235\/revisions\/15243"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15235"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15235"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15235"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}