{"id":12318,"date":"2019-03-19T06:59:53","date_gmt":"2019-03-19T05:59:53","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/"},"modified":"2019-03-19T06:59:53","modified_gmt":"2019-03-19T05:59:53","slug":"how-to-push-an-image-into-amazon-ecr-with-docker","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/","title":{"rendered":"How To Push An Image Into Amazon ECR With Docker"},"content":{"rendered":"<h2><span style=\"text-decoration: underline\">8 Steps To Push An Image Into Amazon ECR With Docker<\/span><\/h2>\n<p>Please bear in mind that Amazon elastic container registry (ECR) is a managed AWS Docker registry service. In this topic, we will use the Docker CLI to push an CentOS image into Amazon ECR.<\/p>\n<h4>1.\u00a0<span style=\"text-decoration: underline\">Install <a title=\"Docker desktop\" href=\"https:\/\/hub.docker.com\/editions\/community\/docker-ce-desktop-windows\" target=\"_blank\" rel=\"noopener noreferrer\">Docker desktop<\/a>\u00a0for Windows\u00a0and <a title=\"AWS CLI\" href=\"https:\/\/s3.amazonaws.com\/aws-cli\/AWSCLI64PY3.msi\" target=\"_blank\" rel=\"noopener noreferrer\">AWS CLI<\/a><\/span><\/h4>\n<p>Verify and confirm that each version has been installed properly (see below):<\/p>\n<ul>\n<li>docker (dash dash)version<\/li>\n<li>aws (dash dash)version<\/li>\n<\/ul>\n<h4>2. <span style=\"text-decoration: underline\">Authentication to AWS<\/span><\/h4>\n<p>Open Power Shell interface with administration privileges and enter the following commands:<\/p>\n<ul>\n<li>aws configure<\/li>\n<li>Access key: ****<\/li>\n<li>Secret key: ****<\/li>\n<\/ul>\n<p>The <span style=\"text-decoration: underline\">region name<\/span> and <span style=\"text-decoration: underline\">output format<\/span> information are not mandatory.<br \/>\nThe data above can be found from the IAM service on AWS console management.<\/p>\n<h4>3.\u00a0<span style=\"text-decoration: underline\">Log in to AWS elastic container registry<\/span><\/h4>\n<p>Use the get-login command to log in to AWS elastic container registry and save it to a text file (see below):<\/p>\n<ul>\n<li>aws ecr get-login (dash dash)region eu-west-3 &gt; text.txt<\/li>\n<\/ul>\n<h4>4. <span style=\"text-decoration: underline\">Authenticate Docker to AWS elastic container registry<\/span><\/h4>\n<p>Replace the aws account id provided into the text file saved previously and specify the password:<\/p>\n<ul>\n<li>docker login -u AWS https:\/\/aws_account_id.dkr.ecr.eu-west-3.amazonaws.com<\/li>\n<li>Password: *****<\/li>\n<li><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Login_AWS-e1552931147527.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-31676\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Login_AWS-e1552931147527.png\" alt=\"Login_AWS\" width=\"123\" height=\"18\" \/><\/a><\/li>\n<\/ul>\n<h4>5. <span style=\"text-decoration: underline\">Download the CentOS image<\/span><\/h4>\n<p>Use the <span style=\"text-decoration: underline\">pull<\/span> command to download the CentOs image:<\/p>\n<ul>\n<li>docker pull centos:6.6<\/li>\n<li><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_Pull_image-e1552931018897.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-31675\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_Pull_image-e1552931018897.png\" alt=\"Docker_Pull_image\" width=\"100\" height=\"16\" \/><\/a><\/li>\n<\/ul>\n<h4>6. <span style=\"text-decoration: underline\">Create a repository<\/span><\/h4>\n<ul>\n<li>aws ecr create-repository (dash dash)repository-name centos<\/li>\n<\/ul>\n<p>The repository has been created successfully into Amazon Elastic Container Registry (see below):<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-31672\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\" alt=\"AWS_ECR_Repository\" width=\"1024\" height=\"195\" \/><\/a><\/p>\n<p>Before proceeding to the next step, make sure that the following requirements are met:<\/p>\n<ul>\n<li>Docker version must be greater or equal to 1.7<\/li>\n<li>The repository is created and that the user has sufficient privileges to access it<\/li>\n<li>The Docker authentication is successful<\/li>\n<\/ul>\n<h4>7. <span style=\"text-decoration: underline\">List the images stored into Docker and tag them<\/span><\/h4>\n<ul>\n<li>docker images<\/li>\n<\/ul>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_images.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-31674\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_images.png\" alt=\"Docker_images\" width=\"300\" height=\"25\" \/><\/a><\/p>\n<ul>\n<li>docker tag centos:6.6 aws_account_id.dkr.ecr.eu-west-3.amazonaws.com\/centos:6.6 (replace the aws_account_id by your account id)<\/li>\n<\/ul>\n<p>Verify that the image has been tagged:<\/p>\n<ul>\n<li>docker images<\/li>\n<\/ul>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_images2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-31682\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/Docker_images2.png\" alt=\"Docker_images2\" width=\"300\" height=\"32\" \/><\/a><\/p>\n<h4>8. <span style=\"text-decoration: underline\">Push the\u00a0CentOS\u00a0image\u00a0into Amazon ECR<\/span><\/h4>\n<p>Use the push command to move the centos image into Amazon elastic container registry:<\/p>\n<ul>\n<li>docker push aws_account_id.dkr.ecr.eu-west-3.amazonaws.com\/centos:6.6 (replace the aws_account_id by your account id)<\/li>\n<\/ul>\n<p>From the Amazon management console, verify that the image has been pushed properly into Amazon elastic container registry (see below):<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/ECR_Push_image-e1552934227719.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-31685\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/ECR_Push_image-e1552934227719.png\" alt=\"ECR_Push_image\" width=\"500\" height=\"173\" \/><\/a><\/p>\n<p>If you are in a test environment, to avoid extra costs, make sure to delete the image and the repository from Amazon elastic container registry.<\/p>\n<p>Use the following command to delete the image:<\/p>\n<ul>\n<li>aws ecr batch-delete-image (dash dash)repository-name centos (dash dash)image-ids imageTag=6.6<\/li>\n<\/ul>\n<p>Use the following command to delete the repository:<\/p>\n<ul>\n<li>aws ecr delete-repository (dash dash)repository-name centos<\/li>\n<\/ul>\n<p>Need further details about Docker basics for Amazon ECR, click <a title=\"Pushing images in AWS with Docker\" href=\"https:\/\/docs.aws.amazon.com\/AmazonECR\/latest\/userguide\/docker-basics.html\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>8 Steps To Push An Image Into Amazon ECR With Docker Please bear in mind that Amazon elastic container registry (ECR) is a managed AWS Docker registry service. In this topic, we will use the Docker CLI to push an CentOS image into Amazon ECR. 1.\u00a0Install Docker desktop\u00a0for Windows\u00a0and AWS CLI Verify and confirm that [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":12321,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[955],"tags":[1451,134,1452,1453,1454,1455,1456],"type_dbi":[],"class_list":["post-12318","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","tag-amazon-ecr","tag-aws-cli","tag-aws-ecr","tag-docker-cli","tag-elastic-container-registry","tag-push-image-into-amazon-ecr","tag-use-docker-to-push-images"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Push An Image Into Amazon ECR With Docker - dbi Blog<\/title>\n<meta name=\"description\" content=\"Learn How To Push An Image Into Amazon ECR With Docker\" \/>\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-push-an-image-into-amazon-ecr-with-docker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Push An Image Into Amazon ECR With Docker\" \/>\n<meta property=\"og:description\" content=\"Learn How To Push An Image Into Amazon ECR With Docker\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-03-19T05:59:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2947\" \/>\n\t<meta property=\"og:image:height\" content=\"562\" \/>\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-push-an-image-into-amazon-ecr-with-docker\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"How To Push An Image Into Amazon ECR With Docker\",\"datePublished\":\"2019-03-19T05:59:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\"},\"wordCount\":454,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\",\"keywords\":[\"Amazon ECR\",\"AWS CLI\",\"AWS ECR\",\"Docker CLI\",\"Elastic Container Registry\",\"Push image into Amazon ECR\",\"Use Docker to push images\"],\"articleSection\":[\"Cloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\",\"name\":\"How To Push An Image Into Amazon ECR With Docker - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\",\"datePublished\":\"2019-03-19T05:59:53+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"description\":\"Learn How To Push An Image Into Amazon ECR With Docker\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png\",\"width\":2947,\"height\":562},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Push An Image Into Amazon ECR With Docker\"}]},{\"@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 Push An Image Into Amazon ECR With Docker - dbi Blog","description":"Learn How To Push An Image Into Amazon ECR With Docker","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-push-an-image-into-amazon-ecr-with-docker\/","og_locale":"en_US","og_type":"article","og_title":"How To Push An Image Into Amazon ECR With Docker","og_description":"Learn How To Push An Image Into Amazon ECR With Docker","og_url":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/","og_site_name":"dbi Blog","article_published_time":"2019-03-19T05:59:53+00:00","og_image":[{"width":2947,"height":562,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.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-push-an-image-into-amazon-ecr-with-docker\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"How To Push An Image Into Amazon ECR With Docker","datePublished":"2019-03-19T05:59:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/"},"wordCount":454,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png","keywords":["Amazon ECR","AWS CLI","AWS ECR","Docker CLI","Elastic Container Registry","Push image into Amazon ECR","Use Docker to push images"],"articleSection":["Cloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/","url":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/","name":"How To Push An Image Into Amazon ECR With Docker - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png","datePublished":"2019-03-19T05:59:53+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"description":"Learn How To Push An Image Into Amazon ECR With Docker","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/AWS_ECR_Repository.png","width":2947,"height":562},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/how-to-push-an-image-into-amazon-ecr-with-docker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Push An Image Into Amazon ECR With Docker"}]},{"@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\/12318","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=12318"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/12318\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/12321"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=12318"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=12318"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=12318"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=12318"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}