{"id":930,"date":"2018-04-03T19:59:04","date_gmt":"2018-04-03T19:59:04","guid":{"rendered":"http:\/\/www.codeastar.com\/?p=930"},"modified":"2018-04-04T12:41:50","modified_gmt":"2018-04-04T12:41:50","slug":"install-docker-raspberry-pi","status":"publish","type":"post","link":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/","title":{"rendered":"How to install Docker on Raspberry Pi"},"content":{"rendered":"

In this article, we will talk about Docker and Raspberry Pi.\u00a0Docker is a platform you may probably hear it often recently. It is hot because it helps people simplify the DevOps process. It lets developers build light-weight applications. Then they can ship and run their applications “anywhere” (we will discuss it in later section).\u00a0On the other hand, Raspberry Pi is a low cost, credit card sized\u00a0complete computer. It is good for being used in education, development<\/a> and IoT (Internet of Thing)! So what if we combine these 2 things together? We can use Docker to run different kind of applications on Raspberry Pi! Booyah! (ideally)<\/p>\n

<\/p>\n

What is Docker?<\/h3>\n

Let’s get back to basics. What is Docker and why is it so popular? Docker is a platform which allows people running different kinds of applications on it. Oh yeah, you may think it is nothing new as virtual machines have already done this for long. Yes, but the beautiful part of Docker is, all of those applications are running under one single Docker engine. Unlike the case of virtual machines installing different guest OSes on a host machine, Docker only installs runtime libraries for related applications. Thus Docker can save more resources on host’s machine and provide faster start up time.<\/p>\n

\"\"
Docker vs VM<\/figcaption><\/figure>\n

Other than resource saving, Docker can bring standards to development team.\u00a0Developers in the team use Docker to build an image, share with teammates and push it on testing environment.\u00a0When there were bugs, they can fix them on development environment. Then they rebuild and redeploy it to testing environment with Docker. Once everything is fine, they can use Docker to deploy the same image to production environment. At the end, developers use Docker to work on the same image in different environments.<\/p>\n

\"\"
Dev Standards with Docker<\/figcaption><\/figure>\n

Enough talking, let’s install!<\/h3>\n

We can visit official Docker web<\/a> site for installing process. It will be easier if we install Docker in Windows or Mac OS. Since we are going to install Docker on Raspberry Pi, it will just add a few more steps.<\/p>\n

First things first, we go for some preparation work:<\/p>\n

Login our Raspberry Pi and run following command<\/p>\n

$uname -a\r\n<\/pre>\n

It will print out the info of our system.<\/p>\n

Linux codearasp 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l GNU\/Linux\r\n<\/pre>\n

Obviously, my Raspberry Pi is called “codearasp” and it is using a 32-bit “armv7I” kernel.<\/p>\n

Or you can use following command<\/p>\n

$cat \/etc\/os-release\r\n<\/pre>\n

To see the OS of our Raspberry Pi.<\/p>\n

PRETTY_NAME=\"Raspbian GNU\/Linux 9 (stretch)\"\r\nNAME=\"Raspbian GNU\/Linux\"\r\nVERSION_ID=\"9\"\r\nVERSION=\"9 (stretch)\"\r\nID=raspbian\r\nID_LIKE=debian\r\n<\/pre>\n

I would recommend installing Docker with at least Raspbian Jessie OS. You can also visit Docker official installation document for Raspbian\u00a0here<\/a>.<\/p>\n

5 steps to install Docker on Raspberry Pi<\/h3>\n

We are just 5 more steps away to have Docker on our Raspberry Pi. Let’s do it!<\/p>\n

1 – Get the updated version for packages stored in our system<\/em><\/p>\n

$sudo apt-get update\r\n<\/pre>\n

2 – Get necessary packages to install Docker on our system<\/em><\/p>\n

$sudo apt-get install apt-transport-https \\\r\n                     ca-certificates \\\r\n                     software-properties-common\r\n<\/pre>\n

3 – Get the official GPG encrypted key from Docker web site<\/em><\/p>\n

The purpose of this step is to ensure we are downloading Docker files from the official Docker source.<\/p>\n

$curl -fsSL https:\/\/download.docker.com\/linux\/debian\/gpg | sudo apt-key add -\r\n<\/pre>\n

4 – Setup the stable repository from Docker web site for installing Docker<\/em><\/p>\n

 $echo \"deb [arch=armhf] https:\/\/download.docker.com\/linux\/debian \\\r\n                                      $(lsb_release -cs) stable\" | \\\r\n                                      sudo tee \/etc\/apt\/sources.list.d\/docker.list\r\n<\/pre>\n

5 – Finally, we are going to install it!\u00a0<\/em><\/p>\n

First, we run the update command again to update packages’ version, as we have just added a Docker repository.<\/p>\n

$sudo apt-get update\r\n<\/pre>\n

Then we install Docker from the repository.<\/p>\n

$sudo apt-get install docker-ce\r\n<\/pre>\n

Ta-Da! Docker is now installed on our Raspberry Pi device.<\/p>\n

Hello World, Docker<\/h3>\n

The best way to verify our Docker installation, is to run a Docker command on it. So we run the following command:<\/p>\n

$sudo docker run armhf\/hello-world\r\n<\/pre>\n

Docker will then try to run an “hello-world” image.<\/p>\n

Unable to find image 'armhf\/hello-world:latest' locally\r\nlatest: Pulling from armhf\/hello-world\r\na0691bf12e4e: Pull complete\r\nDigest: sha256:9701edc932223a66e49dd6c894a11db8c2cf4eccd1414f1ec105a623bf16b426\r\nStatus: Downloaded newer image for armhf\/hello-world:latest\r\n\r\nHello from Docker on armhf!\r\nThis message shows that your installation appears to be working correctly.\r\n<\/pre>\n

A “Hello from Docker on armhf!” message will appear if nothing goes wrong. Docker is ready on our Raspberry Pi, let’s try different Docker image from Docker Hub<\/a>!<\/p>\n

Reality vs Truth<\/h3>\n

“Build once, run anywhere” is a feature of Docker. But well, it is just not the story for Raspberry Pi. Since Docker on Raspberry Pi is using armv7\/6 architecture currently, it can only work with Docker images built from armv7\/6. e.g. a Raspberry Pi Docker can run an image built from Raspberry Pi, but not from Mac OS. ( p.s. “Build once, run anywhere” is still valid for Docker on X86_64 machines)<\/p>\n

\"\"<\/p>\n

Don’t worry, there are many images made for armv7\/6 Docker on Docker Hub<\/a>. And Docker is widely used by many Raspberry Pi users around the globe. It won’t be an issue for getting news or help for it.<\/p>\n

<\/h3>\n

What have we learnt in this post?<\/h3>\n
    \n
  1. Brief introduction of Docker<\/li>\n
  2. Docker installation on Raspberry Pi<\/li>\n
  3. Difference between Docker on X86_64 and armhf (armv6 \/ armv7) architectures<\/li>\n<\/ol>\n

     <\/p>\n","protected":false},"excerpt":{"rendered":"

    In this article, we will talk about Docker and Raspberry Pi.\u00a0Docker is a platform you may probably hear it often recently. It is hot because it helps people simplify the DevOps process. It lets developers build light-weight applications. Then they can ship and run their applications “anywhere” (we will discuss it in later section).\u00a0On the […]<\/p>\n","protected":false},"author":1,"featured_media":952,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_newsletter_tier_id":0,"jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[67],"tags":[70,68,69],"jetpack_publicize_connections":[],"yoast_head":"\nHow to install Docker on Raspberry Pi ⋆ Code A Star<\/title>\n<meta name=\"description\" content=\"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.\" \/>\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.codeastar.com\/install-docker-raspberry-pi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Docker on Raspberry Pi ⋆ Code A Star\" \/>\n<meta property=\"og:description\" content=\"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\" \/>\n<meta property=\"og:site_name\" content=\"Code A Star\" \/>\n<meta property=\"article:publisher\" content=\"codeastar\" \/>\n<meta property=\"article:author\" content=\"codeastar\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-03T19:59:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-04-04T12:41:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/04\/raspberry.png?fit=1000%2C542&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"542\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Raven Hon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeastar\" \/>\n<meta name=\"twitter:site\" content=\"@codeastar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raven Hon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\"},\"author\":{\"name\":\"Raven Hon\",\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd\"},\"headline\":\"How to install Docker on Raspberry Pi\",\"datePublished\":\"2018-04-03T19:59:04+00:00\",\"dateModified\":\"2018-04-04T12:41:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\"},\"wordCount\":778,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd\"},\"keywords\":[\"devops\",\"Docker\",\"Raspberry Pi\"],\"articleSection\":[\"Have a pie, Raspberry Pi(e)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\",\"url\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\",\"name\":\"How to install Docker on Raspberry Pi ⋆ Code A Star\",\"isPartOf\":{\"@id\":\"https:\/\/www.codeastar.com\/#website\"},\"datePublished\":\"2018-04-03T19:59:04+00:00\",\"dateModified\":\"2018-04-04T12:41:50+00:00\",\"description\":\"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.codeastar.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Docker on Raspberry Pi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.codeastar.com\/#website\",\"url\":\"https:\/\/www.codeastar.com\/\",\"name\":\"Code A Star\",\"description\":\"We don't wish upon a star, we code a star\",\"publisher\":{\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.codeastar.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd\",\"name\":\"Raven Hon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/08\/logo70.png?fit=70%2C70&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/08\/logo70.png?fit=70%2C70&ssl=1\",\"width\":70,\"height\":70,\"caption\":\"Raven Hon\"},\"logo\":{\"@id\":\"https:\/\/www.codeastar.com\/#\/schema\/person\/image\/\"},\"description\":\"Raven Hon is\u00a0a 20 years+ veteran in information technology industry who has worked on various projects from console, web, game, banking and mobile applications in different sized companies.\",\"sameAs\":[\"https:\/\/www.codeastar.com\",\"codeastar\",\"https:\/\/twitter.com\/codeastar\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Docker on Raspberry Pi ⋆ Code A Star","description":"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.","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.codeastar.com\/install-docker-raspberry-pi\/","og_locale":"en_US","og_type":"article","og_title":"How to install Docker on Raspberry Pi ⋆ Code A Star","og_description":"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.","og_url":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/","og_site_name":"Code A Star","article_publisher":"codeastar","article_author":"codeastar","article_published_time":"2018-04-03T19:59:04+00:00","article_modified_time":"2018-04-04T12:41:50+00:00","og_image":[{"width":1000,"height":542,"url":"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/04\/raspberry.png?fit=1000%2C542&ssl=1","type":"image\/png"}],"author":"Raven Hon","twitter_card":"summary_large_image","twitter_creator":"@codeastar","twitter_site":"@codeastar","twitter_misc":{"Written by":"Raven Hon","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#article","isPartOf":{"@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/"},"author":{"name":"Raven Hon","@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd"},"headline":"How to install Docker on Raspberry Pi","datePublished":"2018-04-03T19:59:04+00:00","dateModified":"2018-04-04T12:41:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/"},"wordCount":778,"commentCount":0,"publisher":{"@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd"},"keywords":["devops","Docker","Raspberry Pi"],"articleSection":["Have a pie, Raspberry Pi(e)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/","url":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/","name":"How to install Docker on Raspberry Pi ⋆ Code A Star","isPartOf":{"@id":"https:\/\/www.codeastar.com\/#website"},"datePublished":"2018-04-03T19:59:04+00:00","dateModified":"2018-04-04T12:41:50+00:00","description":"Docker is a platform that simplifies the DevOps process. It lets developers build, ship and run\u00a0light-weight applications anywhere.\u00a0Raspberry Pi is a low cost, credit card sized\u00a0complete computer. In this article we are going to install Docker on Raspberry Pi.","breadcrumb":{"@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.codeastar.com\/install-docker-raspberry-pi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.codeastar.com\/"},{"@type":"ListItem","position":2,"name":"How to install Docker on Raspberry Pi"}]},{"@type":"WebSite","@id":"https:\/\/www.codeastar.com\/#website","url":"https:\/\/www.codeastar.com\/","name":"Code A Star","description":"We don't wish upon a star, we code a star","publisher":{"@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codeastar.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/832d202eb92a3d430097e88c6d0550bd","name":"Raven Hon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/image\/","url":"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/08\/logo70.png?fit=70%2C70&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/08\/logo70.png?fit=70%2C70&ssl=1","width":70,"height":70,"caption":"Raven Hon"},"logo":{"@id":"https:\/\/www.codeastar.com\/#\/schema\/person\/image\/"},"description":"Raven Hon is\u00a0a 20 years+ veteran in information technology industry who has worked on various projects from console, web, game, banking and mobile applications in different sized companies.","sameAs":["https:\/\/www.codeastar.com","codeastar","https:\/\/twitter.com\/codeastar"]}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/www.codeastar.com\/wp-content\/uploads\/2018\/04\/raspberry.png?fit=1000%2C542&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8PcRO-f0","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/posts\/930"}],"collection":[{"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/comments?post=930"}],"version-history":[{"count":27,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/posts\/930\/revisions"}],"predecessor-version":[{"id":964,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/posts\/930\/revisions\/964"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/media\/952"}],"wp:attachment":[{"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/media?parent=930"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/categories?post=930"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codeastar.com\/wp-json\/wp\/v2\/tags?post=930"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}