{"id":42704,"date":"2022-04-21T08:00:47","date_gmt":"2022-04-21T06:00:47","guid":{"rendered":"https:\/\/botland.com.pl\/blog\/installing-docker-on-raspberry-pi\/"},"modified":"2022-04-21T06:00:34","modified_gmt":"2022-04-21T04:00:34","slug":"installing-docker-on-raspberry-pi","status":"publish","type":"post","link":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/","title":{"rendered":"Installing Docker on Raspberry Pi"},"content":{"rendered":"<span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading time:<\/span> <span class=\"rt-time\"> 3<\/span> <span class=\"rt-label rt-postfix\">min.<\/span><\/span><h2>Need is the mother of invention<\/h2>\n<p>The intensive development of software &#8211; both computer and mobile, as well as embedded (firmware) &#8211; has made the <b>proper selection of development tools, used in everyday work by both developers and testers and managers, particularly important<\/b>. The level of complexity of tasks faced by people involved in software development is influenced by constant changes occurring both in terms of hardware (new processor architectures, peripheral devices) and software (subsequent editions of operating systems, frameworks, libraries, and even&#8230; programming languages).<\/p>\n<figure><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/thisisengineering-raeng-JVOG4wXkS4o-unsplash.jpg\" sizes=\"(max-width: 640px) 100vw, 640px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/thisisengineering-raeng-JVOG4wXkS4o-unsplash.jpg 640w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/thisisengineering-raeng-JVOG4wXkS4o-unsplash-300x200.jpg 300w\" alt=\"Programming on PC\" width=\"640\" height=\"427\" \/><figcaption>Programming software has become remarkably easy to access<\/figcaption><\/figure>\n<p>All this means that application<b> developers need a method for convenient, fast and, above all, secure testing of their products<\/b> with the possibility of seamless reconfiguration or restoration of the test environment after a failure. Two technologies come to the rescue &#8211; virtualisation and containerisation.<\/p>\n<h2>Virtualisation vs. containerisation &#8211; which to choose?<\/h2>\n<p>Everyone is familiar with the concept of a virtual machine &#8211; with the help of software such as <a href=\"https:\/\/www.virtualbox.org\/\" data-wpel-link=\"external\" target=\"_blank\" rel=\"nofollow external noopener noreferrer\">VirtualBox<\/a> or VMWare you can easily &#8220;put&#8221; your chosen operating system on a computer that is already running another OS.<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Ubuntu_14.04_on_Windows_7.png\" sizes=\"(max-width: 625px) 100vw, 625px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Ubuntu_14.04_on_Windows_7.png 625w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Ubuntu_14.04_on_Windows_7-300x225.png 300w\" alt=\"Ubuntu on VirtualBox\" width=\"625\" height=\"469\" \/><figcaption>A virtual machine makes it possible to use Ubuntu, for example, on a Windows machine. (Source: https:\/\/www.virtualbox.org\/)<\/figcaption><\/figure>\n<p><b>The purpose of a virtual machine is to isolate the guest system<\/b>\u00a0The guest system and the applications running on it are isolated from the host system. Such a solution not only protects the host against potential threats from the inferior system, but also facilitates the work of people who need to use two (or more) operating systems in their activities without the need to constantly shut down the machine and boot another system from the start menu. The software also allows the creation of snapshots, i.e. a record of the virtual machine&#8217;s system state, which can be safely and quickly restored, e.g. in the case of a serious error.<\/p>\n<p>Containerisation, on the other hand, provides a lower level of isolation &#8211; each <b>container is in fact a &#8220;miniature&#8221; working environment with its own libraries and applications, but using the hardware and software resources of the main, superior operating system<\/b>. A great advantage of containerisation is a far-reaching reduction in the demand for computing power and operating memory (as well as disk space) in comparison to virtual machines &#8211; and this translates directly into smooth operation and availability of resources for the needs of tested applications.<\/p>\n<figure><img decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Depositphotos_548130304_S.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Depositphotos_548130304_S.jpg 1000w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Depositphotos_548130304_S-300x200.jpg 300w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/04\/Depositphotos_548130304_S-768x512.jpg 768w\" alt=\"Contenerisation\" width=\"800\" height=\"534\" \/><figcaption>&#8220;Closing&#8221; the programme increases the security of the work on the project<\/figcaption><\/figure>\n<h2>Installing Docker on Raspberry Pi<\/h2>\n<p>In terms of hardware, the <a href=\"https:\/\/botland.store\/1020-raspberry-pi-4b-modules-and-kits\" data-wpel-link=\"internal\">Raspberry Pi 4<\/a> minicomputer is an excellent choice for those wishing to start using containerisation. Docker, one of the most popular container environments, <b>works seamlessly with Raspberry Pi<\/b>, and has already been packaged with installation packages. To download the appropriate version of Docker, <b>you need to start the Raspberry Pi terminal and enter a command<\/b> which will automatically download and save a complete installation script to the disk (or, more precisely, a microSD card):<\/p>\n<pre data-line=\"><code>curl -fsSL https:\/\/get.docker.com -o get-docker.sh<\/code><\/pre>\n<p>After downloading, run the script using the shell command:<\/p>\n<pre data-line=\"><code>sh get-docker.sh<\/code><\/pre>\n<p>All of the configuration, as well as downloading the relevant binary files, will be done automatically, so you don&#8217;t have to manually install any missing repositories. Finally, it is a good idea to add the current user to the docker group (usually this will just be the default account named pi), created during the software installation:<\/p>\n<pre data-line=\"><code>sudo usermod -aG docker $USER<\/code><\/pre>\n<p>This will enable you to run Docker without having to log in as root, which will make everyday work with this environment much easier.<\/p>\n<h2>Creating and using Docker containers<\/h2>\n<p>On the <a href=\"https:\/\/botland.store\/1020-raspberry-pi-4b-modules-and-kits\" data-wpel-link=\"internal\">Raspberry Pi<\/a>, Docker works in exactly the same way as it does on other computers &#8211; <b>you need to start by downloading a suitable container image<\/b>, which is a ready-made set of libraries, system files and system tools based on one of the well-known operating systems, such as Debian, Ubuntu or Fedora. For example, to run an Ubuntu image, run the command:<\/p>\n<pre data-line=\"><code>docker container run -it ubuntu \/bin\/bash<\/code><\/pre>\n<p>This command &#8211; in addition to running (and before that, if necessary, automatically downloading) a popular Linux image &#8211; will also perform the operation written after the image name. In this case, the Linux command line will be run, allowing you to start working &#8220;inside&#8221; the container as if it were a regular computer running Ubuntu.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Docker is a great tool for software developers and testers &#8211; find out how to run it on your Raspberry Pi!<\/p>\n","protected":false},"author":20,"featured_media":42705,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[343,341],"tags":[442,441],"class_list":["post-42704","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-raspberry-pi-en","category-tips","tag-minicomputers","tag-programming"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing Docker on Raspberry Pi - Botland<\/title>\n<meta name=\"description\" content=\"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing Docker on Raspberry Pi - Botland\" \/>\n<meta property=\"og:description\" content=\"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/\" \/>\n<meta property=\"og:site_name\" content=\"Botland\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/Botland\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-21T06:00:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1510\" \/>\n\t<meta property=\"og:image:height\" content=\"1510\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Maciej Figiel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maciej Figiel\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/\"},\"author\":{\"name\":\"Maciej Figiel\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/person\\\/a8e66118d1f27ebf9f540831e5a3283b\"},\"headline\":\"Installing Docker on Raspberry Pi\",\"datePublished\":\"2022-04-21T06:00:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/\"},\"wordCount\":715,\"publisher\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/docker.jpg\",\"keywords\":[\"minicomputers\",\"programming\"],\"articleSection\":[\"Raspberry Pi\",\"Tips\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/\",\"name\":\"Installing Docker on Raspberry Pi - Botland\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/docker.jpg\",\"datePublished\":\"2022-04-21T06:00:47+00:00\",\"description\":\"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#primaryimage\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/docker.jpg\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/docker.jpg\",\"width\":1510,\"height\":1510},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/installing-docker-on-raspberry-pi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\\\/\\\/botland.store\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing Docker on Raspberry Pi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/\",\"name\":\"Botland\",\"description\":\"Blog Raspberry Pi, Arduino, elektronika i robotyka - Botland\",\"publisher\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\",\"name\":\"Botland\",\"url\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo_kolor_WP_2-1.png\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo_kolor_WP_2-1.png\",\"width\":250,\"height\":57,\"caption\":\"Botland\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/Botland\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/person\\\/a8e66118d1f27ebf9f540831e5a3283b\",\"name\":\"Maciej Figiel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"caption\":\"Maciej Figiel\"},\"description\":\"Wszechstronny, ch\u0119tnie podejmuje si\u0119 wyzwa\u0144, bo uwa\u017ca, \u017ce jest to najszybsza droga ku rozwojowi. Ceni sobie kontakt z natur\u0105 i aktywny wypoczynek. Pasjonat motoryzacji i nowych technologii.\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/author\\\/maciej-figiel\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing Docker on Raspberry Pi - Botland","description":"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!","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:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/","og_locale":"en_US","og_type":"article","og_title":"Installing Docker on Raspberry Pi - Botland","og_description":"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!","og_url":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/","og_site_name":"Botland","article_publisher":"https:\/\/facebook.com\/Botland\/","article_published_time":"2022-04-21T06:00:47+00:00","og_image":[{"width":1510,"height":1510,"url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg","type":"image\/jpeg"}],"author":"Maciej Figiel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Maciej Figiel","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#article","isPartOf":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/"},"author":{"name":"Maciej Figiel","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/person\/a8e66118d1f27ebf9f540831e5a3283b"},"headline":"Installing Docker on Raspberry Pi","datePublished":"2022-04-21T06:00:47+00:00","mainEntityOfPage":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/"},"wordCount":715,"publisher":{"@id":"https:\/\/botland.com.pl\/blog\/#organization"},"image":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg","keywords":["minicomputers","programming"],"articleSection":["Raspberry Pi","Tips"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/","url":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/","name":"Installing Docker on Raspberry Pi - Botland","isPartOf":{"@id":"https:\/\/botland.com.pl\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#primaryimage"},"image":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg","datePublished":"2022-04-21T06:00:47+00:00","description":"Find out how to install and run a Docker environment on a Raspberry Pi and what you can use containerisation for - read more on the Botland blog!","breadcrumb":{"@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#primaryimage","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/docker.jpg","width":1510,"height":1510},{"@type":"BreadcrumbList","@id":"https:\/\/botland.store\/blog\/installing-docker-on-raspberry-pi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/botland.store\/blog\/"},{"@type":"ListItem","position":2,"name":"Installing Docker on Raspberry Pi"}]},{"@type":"WebSite","@id":"https:\/\/botland.com.pl\/blog\/#website","url":"https:\/\/botland.com.pl\/blog\/","name":"Botland","description":"Blog Raspberry Pi, Arduino, elektronika i robotyka - Botland","publisher":{"@id":"https:\/\/botland.com.pl\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/botland.com.pl\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/botland.com.pl\/blog\/#organization","name":"Botland","url":"https:\/\/botland.com.pl\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2018\/04\/logo_kolor_WP_2-1.png","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2018\/04\/logo_kolor_WP_2-1.png","width":250,"height":57,"caption":"Botland"},"image":{"@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/Botland\/"]},{"@type":"Person","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/person\/a8e66118d1f27ebf9f540831e5a3283b","name":"Maciej Figiel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","caption":"Maciej Figiel"},"description":"Wszechstronny, ch\u0119tnie podejmuje si\u0119 wyzwa\u0144, bo uwa\u017ca, \u017ce jest to najszybsza droga ku rozwojowi. Ceni sobie kontakt z natur\u0105 i aktywny wypoczynek. Pasjonat motoryzacji i nowych technologii.","url":"https:\/\/botland.store\/blog\/author\/maciej-figiel\/"}]}},"_links":{"self":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts\/42704","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/comments?post=42704"}],"version-history":[{"count":0,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts\/42704\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media\/42705"}],"wp:attachment":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media?parent=42704"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/categories?post=42704"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/tags?post=42704"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}