{"id":12234,"date":"2019-02-14T13:18:28","date_gmt":"2019-02-14T12:18:28","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/"},"modified":"2019-02-14T13:18:28","modified_gmt":"2019-02-14T12:18:28","slug":"how-to-create-a-new-container-group-using-azure-cli","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/","title":{"rendered":"How To Create A New Container Group Using Azure CLI"},"content":{"rendered":"<h2><span style=\"text-decoration: underline\">Steps\u00a0To Create A New Container Group Using Azure CLI<\/span><\/h2>\n<p>Before starting to create a container group, a <span style=\"text-decoration: underline\"><strong>MSDN account<\/strong><\/span>\u00a0is needed to use the Azure platform, please\u00a0refer to your manager for further information.<\/p>\n<p>In this tutorial, the Azure CLI command-line tool will be install on <strong><span style=\"text-decoration: underline\">Windows<\/span>\u00a0<\/strong>and we will deploy a website running the open source GHOST platform.<\/p>\n<p>Choose the right operating system to install the command-line tool. The information can be found <a title=\"Azure CLI command-line tool\" href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/install-azure-cli?view=azure-cli-latest\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n<p>When the installation is done, launch the command prompt and type <span style=\"text-decoration: underline\"><strong>az login <\/strong><\/span>to authenticate on the Azure platform (see below):<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-31089\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png\" alt=\"az login\" width=\"1024\" height=\"61\" \/><\/a><br \/>\nWait until a browser is launched so that you can login (see below):<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az_authentication1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-31116\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az_authentication1.png\" alt=\"az_authentication1\" width=\"300\" height=\"183\" \/><\/a><br \/>\nYou have logged into Microsoft Azure!<\/p>\n<p>To create a new container, the following command will be used:<\/p>\n<ul>\n<li>az group create<\/li>\n<li>az container create<\/li>\n<li>az container show<\/li>\n<li>az container logs<\/li>\n<li>az group delete<\/li>\n<\/ul>\n<p>Open\u00a0the command prompt and type powershell to start.<\/p>\n<p>Define the variable\u00a0resource group that will hold the container group:<\/p>\n<ul>\n<li>$resourceGroup = &#8220;TutoGhost&#8221; (hit enter)<\/li>\n<\/ul>\n<p>Define the variable location:<\/p>\n<ul>\n<li>$location = &#8220;westeurope&#8221; (hit enter)<\/li>\n<\/ul>\n<p>Create the resource group and the location:<\/p>\n<ul>\n<li>az group create -n $resourceGroup -l $location (hit enter)<\/li>\n<\/ul>\n<p>The resource group and the location are now created.<\/p>\n<p>Define the variable container group (only lowercase letters, numbers and dashes):<\/p>\n<ul>\n<li>$containerGroupName = &#8220;site1-ghost&#8221; (hit enter)<\/li>\n<\/ul>\n<p>Create the container group:<\/p>\n<ul>\n<li>az container create -g $resourceGroup -n $containerGroupName `<\/li>\n<li>&#8211;image ghost `<\/li>\n<li>&#8211;ports 2368 `<\/li>\n<li>&#8211;ip-address public `<\/li>\n<li>&#8211;dns-name-label testtutoghost<\/li>\n<\/ul>\n<p>The d<span style=\"text-decoration: underline\">ns-name-label<\/span>\u00a0should be unique.<\/p>\n<p>Hit enter to execute the commands.<\/p>\n<p>During the execution process, use the following command-line to check the status\u00a0of the container group:<\/p>\n<ul>\n<li>az container show `<\/li>\n<li>-g $resourceGroup -n $containerGroupName<\/li>\n<\/ul>\n<p>The\u00a0<strong><span style=\"text-decoration: underline\">provisioningState<\/span>\u00a0<\/strong>variable\u00a0display\u00a0the three state of creation of the container group which is <span style=\"text-decoration: underline\">pending<\/span>, <span style=\"text-decoration: underline\">creating<\/span> and <span style=\"text-decoration: underline\">succeeded<\/span>.<\/p>\n<p>A public random ip address is assigned and a fully qualified domain name which is <span style=\"text-decoration: underline\"><strong>testtutoghost.westeurope.azurecontainer.io<\/strong><\/span><\/p>\n<p>To check if the container is up and running, open a browser and type the FQDN followed by colon 2368.<\/p>\n<p>To check the container group logs, type the following command:<\/p>\n<ul>\n<li>az container logs `<\/li>\n<li>-n $containerGroupName -g $resourceGroup<\/li>\n<\/ul>\n<p>The container group created is viewable from the <a title=\"Azure portal\" href=\"https:\/\/portal.azure.com\" target=\"_blank\" rel=\"noopener noreferrer\">Azure portal<\/a>\u00a0under Resource groups section.<\/p>\n<p><strong><span style=\"text-decoration: underline\">Information related to the cost of resources used during the implementation of the container<\/span><\/strong>:<\/p>\n<p>To get this information, use the following PowerShell commands:<br \/>\nThe below command gives you the <span style=\"text-decoration: underline\">usage start<\/span> and <span style=\"text-decoration: underline\">end date<\/span>, the <span style=\"text-decoration: underline\">period<\/span>, the <span style=\"text-decoration: underline\">instance name<\/span>, the foretaste of the <span style=\"text-decoration: underline\">cost<\/span> and the <span style=\"text-decoration: underline\">id<\/span> of the resource (see below):<br \/>\nGet-AzConsumptionUsageDetail -BillingPeriodName 201902 -ResourceGroup TutoGhost<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Resource_Cost.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-31428\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Resource_Cost.png\" alt=\"Resource_Cost\" width=\"1024\" height=\"57\" \/><\/a><br \/>\nPlease note that\u00a0costs do not occur on a resource group but only on services that\u00a0live within\u00a0it.<\/p>\n<p>Need further\u00a0details, click <a title=\"Azure Pricing Calculator\" href=\"https:\/\/azure.microsoft.com\/en-us\/pricing\/calculator\/\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n<p>If you are in a\u00a0test environment, to avoid paying extra cost, make sure to delete the resource group (command-line below) created if not used.<\/p>\n<ul>\n<li>az group delete -n $resourceGroup -y<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Steps\u00a0To Create A New Container Group Using Azure CLI Before starting to create a container group, a MSDN account\u00a0is needed to use the Azure platform, please\u00a0refer to your manager for further information. In this tutorial, the Azure CLI command-line tool will be install on Windows\u00a0and we will deploy a website running the open source GHOST [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":12235,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[955],"tags":[1338,1565,1566,1567,720,1568,1569],"type_dbi":[],"class_list":["post-12234","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","tag-azure","tag-azure-cli","tag-azure-containers","tag-azure-resource-group","tag-container","tag-container-group","tag-resource-group"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Create A New Container Group Using Azure CLI - dbi Blog<\/title>\n<meta name=\"description\" content=\"Learn How To Create A New Container Group Using Azure CLI Tool\" \/>\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.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Create A New Container Group Using Azure CLI\" \/>\n<meta property=\"og:description\" content=\"Learn How To Create A New Container Group Using Azure CLI Tool\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-14T12:18:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2282\" \/>\n\t<meta property=\"og:image:height\" content=\"137\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\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:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"How To Create A New Container Group Using Azure CLI\",\"datePublished\":\"2019-02-14T12:18:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/\"},\"wordCount\":476,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/az-login.png\",\"keywords\":[\"Azure\",\"Azure CLI\",\"azure containers\",\"azure resource group\",\"container\",\"container group\",\"resource group\"],\"articleSection\":[\"Cloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/\",\"name\":\"How To Create A New Container Group Using Azure CLI - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/az-login.png\",\"datePublished\":\"2019-02-14T12:18:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\"},\"description\":\"Learn How To Create A New Container Group Using Azure CLI Tool\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/az-login.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/az-login.png\",\"width\":2282,\"height\":137},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/how-to-create-a-new-container-group-using-azure-cli\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Create A New Container Group Using Azure CLI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/microsoft-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Create A New Container Group Using Azure CLI - dbi Blog","description":"Learn How To Create A New Container Group Using Azure CLI Tool","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.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/","og_locale":"en_US","og_type":"article","og_title":"How To Create A New Container Group Using Azure CLI","og_description":"Learn How To Create A New Container Group Using Azure CLI Tool","og_url":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/","og_site_name":"dbi Blog","article_published_time":"2019-02-14T12:18:28+00:00","og_image":[{"width":2282,"height":137,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png","type":"image\/png"}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"How To Create A New Container Group Using Azure CLI","datePublished":"2019-02-14T12:18:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/"},"wordCount":476,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png","keywords":["Azure","Azure CLI","azure containers","azure resource group","container","container group","resource group"],"articleSection":["Cloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/","url":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/","name":"How To Create A New Container Group Using Azure CLI - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png","datePublished":"2019-02-14T12:18:28+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"description":"Learn How To Create A New Container Group Using Azure CLI Tool","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/az-login.png","width":2282,"height":137},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-create-a-new-container-group-using-azure-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Create A New Container Group Using Azure CLI"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/12234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=12234"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/12234\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/12235"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=12234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=12234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=12234"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=12234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}