{"id":3662,"date":"2025-10-08T14:39:40","date_gmt":"2025-10-08T14:39:40","guid":{"rendered":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?p=3662"},"modified":"2025-12-12T07:04:58","modified_gmt":"2025-12-12T07:04:58","slug":"how-to-update-n8n-in-docker","status":"publish","type":"post","link":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html","title":{"rendered":"How to Update n8n in Docker?"},"content":{"rendered":"\n<p>If you&#8217;re using n8n (the popular workflow automation tool) inside a Docker container, regularly updating it is essential to enjoy new features, performance improvements, and security patches.<\/p>\n\n\n\n<p>But updating Docker containers is slightly different from traditional software updates; instead of <strong>\u201cupgrading\u201d<\/strong> the app inside the container, we replace the old container with a new one built from the latest image.<\/p>\n\n\n\n<p>In this article, we will guide you through the step-by-step process of updating n8n in Docker, explaining not only what to do but also why each step is important.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/469\/manually-install-n8n-on-ubuntu.html\"><strong>How to Manually Install n8n on Ubuntu?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Before You Start<\/strong><\/h2>\n\n\n\n<p>Before jumping into commands, let\u2019s make sure you have everything in place.<\/p>\n\n\n\n<p><strong>Prerequisites:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\" style=\"list-style: '\\2794';\">\n<li>&nbsp;Docker is already installed and running on your system.<\/li>\n\n\n\n<li>&nbsp;n8n is currently running in a Docker container.<\/li>\n\n\n\n<li>&nbsp;You have access to the terminal or SSH for your server.<\/li>\n\n\n\n<li>&nbsp;You know the name of your n8n container (you can find it using <strong>docker ps<\/strong>).<\/li>\n\n\n\n<li>&nbsp;You\u2019ve backed up your data (we will explain that next).<\/li>\n<\/ul>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/472\/how-to-access-n8n.html\"><strong>How to Access n8n \u2013 A Helpful Guide<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Steps to Update n8n in Docker<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u27a2<\/strong> <strong>Step 1: Backup Your n8n Data<\/strong><\/h3>\n\n\n\n<p>Even though Docker makes deployment simple, updating a container replaces the old image, so your data could be lost if it\u2019s stored inside the container itself.<\/p>\n\n\n\n<p>That\u2019s why it\u2019s best to store n8n data in a Docker volume or a bind mount.<\/p>\n\n\n\n<p>If you\u2019re already using a persistent volume (such as <strong>\/home\/n8n\/.n8n or\/home\/node\/.n8n<\/strong>), your workflows and credentials are safe.<\/p>\n\n\n\n<p>Still, it\u2019s a good habit to create a backup before updating:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker exec -t &lt;container_name> tar czf \/home\/node\/.n8n\/backup.tar.gz -C \/home\/node\/.n8n .<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 <strong>What this does:<\/strong><\/p>\n\n\n\n<p>\u2794 <strong>docker exec<\/strong> runs a command inside your existing container.<\/p>\n\n\n\n<p>\u2794 <strong>tar czf<\/strong> compresses (create + zip + file) the <strong>.n8n<\/strong> folder into a backup file.<\/p>\n\n\n\n<p>\u2794 <strong>\/home\/node\/.n8n<\/strong> is where n8n stores its workflows, credentials, and configurations.<\/p>\n\n\n\n<p>After the command runs, you can copy the backup file to your host machine:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker cp &lt;container_name>:\/home\/node\/.n8n\/backup.tar.gz .<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Now you have a safe backup in case something goes wrong.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u27a2<\/strong> <strong>Step 2: Stop the Running n8n Container<\/strong><\/h3>\n\n\n\n<p>Before pulling a new image, stop your existing container to prevent conflicts:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker stop &lt;container_name><\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 <strong>Why this step?<\/strong><\/p>\n\n\n\n<p>\u2794 This ensures n8n doesn\u2019t use files that will soon be replaced.<\/p>\n\n\n\n<p>\u2794 It gives Docker a clean slate to remove the container safely in the next step.<\/p>\n\n\n\n<p>You can verify it stopped successfully with:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker ps<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If you don\u2019t see your n8n container listed, it\u2019s stopped.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u27a2<\/strong> <strong>Step 3: Remove the Old Container<\/strong><\/h3>\n\n\n\n<p>Once stopped, remove the old container:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker rm &lt;container_name><\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 <strong>Why this step?<\/strong><\/p>\n\n\n\n<p>\u2794 Docker containers are like disposable shells around your application.<\/p>\n\n\n\n<p>\u2794 Removing the container doesn\u2019t delete your data (as long as it\u2019s stored in a volume).<\/p>\n\n\n\n<p>\u2794 We remove the old one so Docker can run a fresh container with the latest image version.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u27a2 <strong>Step 4: Pull the Latest n8n Docker Image<\/strong><\/h3>\n\n\n\n<p>Now, let\u2019s get the latest version of n8n from Docker Hub:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker pull n8nio\/n8n:latest<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u2605 <strong>What does this?<\/strong><\/p>\n\n\n\n<p>\u2794 Docker pull downloads the most recent version of the n8n image.<\/p>\n\n\n\n<p>\u2794 The <strong>:latest<\/strong> tag ensures you\u2019re fetching the newest stable release.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u27a2<\/strong> <strong>Step 5: Start the New n8n Container<\/strong><\/h3>\n\n\n\n<p>Now, run the new container using your existing configuration.<\/p>\n\n\n\n<p>If you originally ran n8n like this:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span><table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker run -it &#8211;rm \\<\/strong><br><strong>\u00a0\u00a0&#8211;name n8n \\<\/strong><br><strong>\u00a0\u00a0-p 5678:5678 \\<\/strong><br><strong>\u00a0\u00a0-v ~\/.n8n:\/home\/node\/.n8n \\<\/strong><br><strong>\u00a0\u00a0n8nio\/n8n<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You can use the same command again.<\/p>\n\n\n\n<p>The key part here is the <strong>volume mount (-v)<\/strong> \u2014 it links your host\u2019s .n8n folder with the container\u2019s data folder, ensuring your workflows remain intact.<\/p>\n\n\n\n<p><strong>Why this step?<\/strong><\/p>\n\n\n\n<p>\u2794 <strong>docker run<\/strong> creates and starts a new container from the updated image.<\/p>\n\n\n\n<p>\u2794 The <strong>-v<\/strong> option ensures your previous data is reused.<\/p>\n\n\n\n<p>\u2794 <strong>-p<\/strong> maps your system port (5678) to n8n\u2019s internal port.<\/p>\n\n\n\n<p>\u2794 The <strong>&#8211;name<\/strong> makes the container easy to reference later.<\/p>\n\n\n\n<p>If you used Docker Compose earlier, you can simply update the image and restart the service:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker-compose pull<\/strong><br><strong>docker-compose up -d<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This will automatically fetch and run the new image while preserving your volumes and configuration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>\u27a2<\/strong> <strong>Step 6: Verify the Update<\/strong><\/h3>\n\n\n\n<p>To confirm the update was successful, run:<\/p>\n\n\n\n<figure class=\"wp-block-table\">\n\t<button class=\"copy-btn\" onclick=\"copyCommand(this)\">\n            \ud83d\udccb\n          <\/button><span class=\"copy-msg\">Copied!<\/span>\n          <table class=\"has-fixed-layout\"><tbody><tr><td class=\"kb_firewall\"><strong>docker exec -it &lt;container_name> n8n &#8211;version<\/strong><\/td>\n<\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>You should see the new version number displayed.<\/p>\n\n\n\n<p>You can also open your n8n instance in the browser (e.g., http:\/\/localhost:5678) and check the version from the settings.<\/p>\n\n\n\n<hr><p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/470\/set-custom-domain-for-n8n-on-vps.html\"><strong>How to Set a Custom Domain for n8n on VPS?<\/strong><\/a><\/p><hr>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Updating n8n in Docker isn\u2019t complicated; it\u2019s more about understanding how Docker containers work. You\u2019re not <strong>\u2018upgrading inside\u2019<\/strong> the container; you\u2019re replacing the old container with a new one built from the latest image.<\/p>\n\n\n\n<p>By following this approach, you can stop the old container, pull the new image, and mount your existing data, ensuring you always stay updated without losing your workflows.<\/p>\n\n\n\n<p>So next time a new n8n release drops, you will know exactly what to do &#8211; confidently and safely!<\/p>\n\n\n\n<script>\nfunction copyCommand(btn) {\n  const td = btn.parentElement.querySelector(\"td.kb_firewall\");\n  const text = td.innerText.trim();\n\n  navigator.clipboard.writeText(text).then(() => {\n    const msg = btn.parentElement.querySelector(\".copy-msg\");\n    msg.style.display = \"inline-block\";\n    setTimeout(() => msg.style.display = \"none\", 1000);\n  });\n}\n<\/script>","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re using n8n (the popular workflow automation tool) inside a Docker container, regularly updating it is essential to enjoy new features, performance improvements, and security patches. But updating Docker containers is slightly different from traditional software updates; instead of \u201cupgrading\u201d the app inside the container, we replace the old container with a new one [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[64],"tags":[],"class_list":["post-3662","post","type-post","status-publish","format-standard","hentry","category-n8n"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Update n8n in Docker?<\/title>\n<meta name=\"description\" content=\"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.\" \/>\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.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Update n8n in Docker?\" \/>\n<meta property=\"og:description\" content=\"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-08T14:39:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T07:04:58+00:00\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html\",\"name\":\"How to Update n8n in Docker?\",\"isPartOf\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2025-10-08T14:39:40+00:00\",\"dateModified\":\"2025-12-12T07:04:58+00:00\",\"author\":{\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\"},\"description\":\"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Update n8n in Docker?","description":"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.","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.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html","og_locale":"en_US","og_type":"article","og_title":"How to Update n8n in Docker?","og_description":"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.","og_url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2025-10-08T14:39:40+00:00","article_modified_time":"2025-12-12T07:04:58+00:00","author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html","name":"How to Update n8n in Docker?","isPartOf":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2025-10-08T14:39:40+00:00","dateModified":"2025-12-12T07:04:58+00:00","author":{"@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108"},"description":"Learn how to update n8n in Docker without losing your workflows or data, which covers commands, backup tips, and best practices to safely upgrade your n8n.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/475\/how-to-update-n8n-in-docker.html"]}]},{"@type":"WebSite","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/317c14a877385667f19d3b7496bd5108","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4827c56a6721070dde339640d47ff44ba0d0e515c7e577cf29305ab72383fe3?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/3662","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=3662"}],"version-history":[{"count":8,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/3662\/revisions"}],"predecessor-version":[{"id":3843,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/3662\/revisions\/3843"}],"wp:attachment":[{"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=3662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=3662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=3662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}