{"id":9176,"date":"2025-07-29T10:17:16","date_gmt":"2025-07-29T04:47:16","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9176"},"modified":"2025-07-29T10:17:22","modified_gmt":"2025-07-29T04:47:22","slug":"harbor-dockerhub-backup-and-restore-guide","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/","title":{"rendered":"Harbor &#8211; Dockerhub Backup and Restore Guide"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"> Introduction<\/h2>\n\n\n\n<p>Harbor is a popular, open-source container image registry that secures images with role-based access control, supports image replication, and integrates with external authentication systems. Like any registry, it&#8217;s critical to <strong>regularly back up your Harbor instance<\/strong>, including the database, image storage, configuration, and SSL certificates. This guide provides step-by-step instructions to automate Harbor backups and restore them when needed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding, ensure the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Docker is installed<\/li>\n\n\n\n<li>Harbor is installed via <strong>Docker Compose<\/strong> (e.g., <code>\/root\/harbor<\/code>)<\/li>\n\n\n\n<li>Your data directory is located at <code><strong>\/data<\/strong><\/code><\/li>\n\n\n\n<li>Optional: AWS CLI configured for S3 upload<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">DNS Configuration<\/h3>\n\n\n\n<p>Your Harbour instance should be accessible via a valid domain (e.g., <code>dockerhub.&lt;yourdomain&gt;.com<\/code>) and DNS A record should point to your server&#8217;s public IP.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Backup Strategy Overview<\/h1>\n\n\n\n<p>Your backup process should include the following components:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>PostgreSQL Database<\/strong><br>Harbor stores metadata and configuration in its internal PostgreSQL database (<code>harbor-db<\/code>). Dumping this database is critical for a full restore.<\/li>\n\n\n\n<li><strong>Harbor Configuration Files<\/strong><br>These are typically stored under your Harbor installation directory (e.g., <code>\/root\/harbor<\/code>).<\/li>\n\n\n\n<li><strong>Image and Artifact Storage<\/strong><br>All image layers and associated files are stored under <code>\/data<\/code>. This folder must be archived during backup.<\/li>\n\n\n\n<li><strong>Logs and SSL Certificates<\/strong><br>Include log directories and any SSL certificates stored within Harbor&#8217;s directories.<\/li>\n\n\n\n<li><strong>Automation<\/strong><br>Create a custom script that compresses the above components into a single archive and optionally uploads it to a cloud storage bucket (e.g., S3).<\/li>\n\n\n\n<li><strong>Retention Policy<\/strong><br>Implement a mechanism to retain only the latest few backups (e.g., last 5 backups) to conserve disk space.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Backup Process \u2013 Key Steps<\/h2>\n\n\n\n<p>You can design a backup script that performs the following actions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a backup directory (e.g., <code>\/opt\/harbor\/backups<\/code>)<\/li>\n\n\n\n<li>Generate a timestamped filename<\/li>\n\n\n\n<li>Dump the <strong>Harbor PostgreSQL database<\/strong> (<code>harbor-db<\/code>) to a SQL file<\/li>\n\n\n\n<li>Archive the following:\n<ol class=\"wp-block-list\">\n<li>Harbor configuration directory (<code>\/root\/harbor<\/code>)<\/li>\n\n\n\n<li>Image and data storage directory (<code>\/data<\/code>)<\/li>\n\n\n\n<li>Database dump file<\/li>\n\n\n\n<li>Harbor logs (<code>\/var\/log\/harbor<\/code>) and SSL certs (if applicable)<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li>(Optional) Upload the archive to AWS S3 or another remote location<\/li>\n\n\n\n<li>Automatically remove older backups beyond a set limit (e.g., keep only 5 recent archives)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Restore Process \u2013 Key Steps<\/h2>\n\n\n\n<p>To restore a Harbor instance from backup:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Extract Backup Archive<\/strong><br>Unpack the desired backup archive in your backup directory (e.g., <code>\/opt\/harbor\/backups<\/code>).<\/li>\n\n\n\n<li><strong>Restore Database<\/strong>\n<ol class=\"wp-block-list\">\n<li>Start the <code>harbor-db<\/code> container only using Docker Compose.<\/li>\n\n\n\n<li>Import the previously dumped SQL file back into the database.<\/li>\n<\/ol>\n<\/li>\n\n\n\n<li><strong>Restore Configuration and Data<\/strong>\n<ol class=\"wp-block-list\">\n<li>Place the extracted <code>harbor<\/code> directory back to its original path (<code>\/root\/harbor<\/code>)<\/li>\n\n\n\n<li>Replace the <code>\/data<\/code> directory with the backup copy (if necessary)<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Verification<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Visit: <code>https:\/\/dockerhub.&lt;yourdomain&gt;.com<\/code><\/li>\n\n\n\n<li>Check web UI, repositories, and certs.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"> Conclusion<\/h2>\n\n\n\n<p>With Harbor storing critical container images and metadata, a reliable backup and restore process is non-negotiable. This guide provides a complete approach to safely back up Harbor&#8217;s components, automate the process, and ensure fast disaster recovery using Docker Compose. Ensure regular testing of your backups and consider off-site storage (e.g., S3) for production environments.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Harbor is a popular, open-source container image registry that secures images with role-based access control, supports image replication, and integrates with external authentication systems. Like any registry, it&#8217;s critical to regularly back up your Harbor instance, including the database, image storage, configuration, and SSL certificates. This guide provides step-by-step&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Harbor &#8211; Dockerhub Backup and Restore Guide<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":509,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9176","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Harbor is a popular, open-source container image registry that secures images with role-based access control, supports image replication, and integrates with external authentication systems. Like any registry, it&#8217;s critical to regularly back up your Harbor instance, including the database, image storage, configuration, and SSL certificates. This guide provides step-by-step&hellip; Continue Reading Harbor &#8211; Dockerhub Backup and Restore Guide\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-29T04:47:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-29T04:47:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"ajith kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ajith kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/\"},\"author\":{\"name\":\"ajith kumar\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/6ab408ebbf9dfadd98efe97ac6a1628c\"},\"headline\":\"Harbor &#8211; Dockerhub Backup and Restore Guide\",\"datePublished\":\"2025-07-29T04:47:16+00:00\",\"dateModified\":\"2025-07-29T04:47:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/\"},\"wordCount\":459,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-07-29T04:47:16+00:00\",\"dateModified\":\"2025-07-29T04:47:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/harbor-dockerhub-backup-and-restore-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Harbor &#8211; Dockerhub Backup and Restore Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/6ab408ebbf9dfadd98efe97ac6a1628c\",\"name\":\"ajith kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g\",\"caption\":\"ajith kumar\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/ajithkumar\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Harbor is a popular, open-source container image registry that secures images with role-based access control, supports image replication, and integrates with external authentication systems. Like any registry, it&#8217;s critical to regularly back up your Harbor instance, including the database, image storage, configuration, and SSL certificates. This guide provides step-by-step&hellip; Continue Reading Harbor &#8211; Dockerhub Backup and Restore Guide","og_url":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-07-29T04:47:16+00:00","article_modified_time":"2025-07-29T04:47:22+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"ajith kumar","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"ajith kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/"},"author":{"name":"ajith kumar","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/6ab408ebbf9dfadd98efe97ac6a1628c"},"headline":"Harbor &#8211; Dockerhub Backup and Restore Guide","datePublished":"2025-07-29T04:47:16+00:00","dateModified":"2025-07-29T04:47:22+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/"},"wordCount":459,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/","url":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2025-07-29T04:47:16+00:00","dateModified":"2025-07-29T04:47:22+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/harbor-dockerhub-backup-and-restore-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Harbor &#8211; Dockerhub Backup and Restore Guide"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/6ab408ebbf9dfadd98efe97ac6a1628c","name":"ajith kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a463c141c3488471a039f0a4d588a86bc78219e706133ac827f260f60ee9dc83?s=96&r=g","caption":"ajith kumar"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/ajithkumar\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2o0","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/509"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9176"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9176\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}