{"id":31,"date":"2026-07-16T01:46:27","date_gmt":"2026-07-16T01:46:27","guid":{"rendered":"https:\/\/chethana.me\/blog\/?p=31"},"modified":"2026-07-16T01:52:06","modified_gmt":"2026-07-16T01:52:06","slug":"switch-docker-contexts-like-a-pro","status":"publish","type":"post","link":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/","title":{"rendered":"Switch Docker Contexts Like a Pro"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Hello, fellow developers! If you&#8217;ve ever worked with Docker system services or switched between multiple Docker contexts, you know that it can feel like you&#8217;re managing a fleet of ships instead of just running a few containers. Today I\u2019m going to go through the basics of stopping, disabling, switching, and resurrecting your Docker Engine, plus a quick troubleshooting tip for those pesky post-upgrade permission issues. So let&#8217;s Switch Docker Contexts Like a Pro.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Stopping and disabling the Docker Engine<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sometimes you need a new beginning. Run the following to stop the Docker Engine and related services:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl stop docker docker.socket containerd\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Disable auto-start on boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl disable docker docker.socket containerd\n<\/code><\/pre>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>Tip:<\/strong> This can be especially useful if you\u2019re switching to Docker Desktop, experimenting with remote Docker contexts, or just trying to conserve some system resources.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Docker Contexts: What, Why and How<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Docker CLI supports multiple engines: local, remote, and cloud. You can read more about how this architecture works in the official <a href=\"https:\/\/docs.docker.com\/engine\/manage-resources\/contexts\/\" target=\"_blank\" rel=\"noreferrer noopener\">Docker Contexts Documentation<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Run the following command to see what contexts you have and which one is active (indicated by the <code>*<\/code>):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker context ls\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If you have installed Docker Desktop, you will see a new context called <code>desktop-linux<\/code>. This is how the CLI talks to Docker Desktop instead of your system\u2019s Docker Engine.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"155\" src=\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image-1024x155.png\" alt=\"\" class=\"wp-image-32\" srcset=\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image-1024x155.png 1024w, https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image-300x45.png 300w, https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image-768x116.png 768w, https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image-1536x232.png 1536w, https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/04\/image.png 1986w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Switching Contexts Effortlessly<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Need to switch between environments? Use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker context use context_name\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Standard switch (<\/strong>default engine):<code> docker context use default<\/code><\/li>\n\n\n\n<li><strong>Switch to Docker Desktop:<\/strong>  <code>docker context use desktop-linux<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Restart Docker service.<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Ready to run Docker again? It is as simple as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start docker docker.socket containerd\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting: Docker daemon socket permission denied<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After an upgrade, you might see the infamous error:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><code>docker: Cannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?<\/code><\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">How to fix:<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Check the status<\/strong> of the Docker service to ensure that it is running properly.<\/li>\n\n\n\n<li><strong>Assign permissions<\/strong> to the Docker socket if everything else is okay:  <code>sudo chmod 666 \/var\/run\/docker.sock<\/code><\/li>\n<\/ol>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>Note:<\/strong> Depending on your current Docker context, the socket URI might be different, so double-check your context before changing permissions.<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Managing Docker services and contexts can be a hassle, but it doesn&#8217;t have to be. With these commands in your toolbox, you\u2019ll be swapping engines, troubleshooting like a pro, and making your dev environment work for you, not the other way around.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">More deep dives and practical tips coming up in our next edition. Happy shipping; until then!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, fellow developers! If you&#8217;ve ever worked with Docker system services or switched between multiple Docker contexts, you know that it can feel like you&#8217;re managing a fleet of ships instead of just running a few containers. Today I\u2019m going to go through the basics of stopping, disabling, switching, and resurrecting your Docker Engine, plus&#8230;<\/p>\n","protected":false},"author":2,"featured_media":42,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[9],"tags":[8,5,4,6,7],"class_list":["post-31","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops","tag-containers","tag-devops","tag-docker","tag-linux","tag-sysadmin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.8.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal<\/title>\n<meta name=\"description\" content=\"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal\" \/>\n<meta property=\"og:description\" content=\"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\" \/>\n<meta property=\"og:site_name\" content=\"Chethana\u2019s Dev Journal\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-16T01:46:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-16T01:52:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Chethana (admin)\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Chethana (admin)\" \/>\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:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\"},\"author\":{\"name\":\"Chethana (admin)\",\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/085afcccf9fa629c6170b15861bcc428\"},\"headline\":\"Switch Docker Contexts Like a Pro\",\"datePublished\":\"2026-07-16T01:46:27+00:00\",\"dateModified\":\"2026-07-16T01:52:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\"},\"wordCount\":368,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054\"},\"image\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg\",\"keywords\":[\"Containers\",\"DevOps\",\"Docker\",\"Linux\",\"SysAdmin\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\",\"url\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\",\"name\":\"Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal\",\"isPartOf\":{\"@id\":\"https:\/\/chethana.me\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg\",\"datePublished\":\"2026-07-16T01:46:27+00:00\",\"dateModified\":\"2026-07-16T01:52:06+00:00\",\"description\":\"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.\",\"breadcrumb\":{\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage\",\"url\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg\",\"contentUrl\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg\",\"width\":1200,\"height\":628,\"caption\":\"Switch Docker Contexts Like a Pro\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chethana.me\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Switch Docker Contexts Like a Pro\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/chethana.me\/blog\/#website\",\"url\":\"https:\/\/chethana.me\/blog\/\",\"name\":\"Chethana\u2019s Dev Journal\",\"description\":\"Code, innovate, inspire&mdash;stories from a software engineer&rsquo;s desk\",\"publisher\":{\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/chethana.me\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054\",\"name\":\"Chethana Kalpa\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/01\/cropped-file-3.png\",\"contentUrl\":\"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/01\/cropped-file-3.png\",\"width\":925,\"height\":370,\"caption\":\"Chethana Kalpa\"},\"logo\":{\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Hello \ud83d\udc4b I'm a passionate software engineer with nearly 6 years of experience. I love diving into new challenges, constantly learning, and finding creative solutions. And when I'm not coding, you'll find me immersed in the world of comic books!\",\"sameAs\":[\"http:\/\/chethana.me\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/085afcccf9fa629c6170b15861bcc428\",\"name\":\"Chethana (admin)\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8cf9f6817681feeccb665272c484ac26fd328f1e36017b746f10c2ee97e14433?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8cf9f6817681feeccb665272c484ac26fd328f1e36017b746f10c2ee97e14433?s=96&d=mm&r=g\",\"caption\":\"Chethana (admin)\"},\"sameAs\":[\"http:\/\/chethana.me\"],\"url\":\"https:\/\/chethana.me\/blog\/author\/chethana\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal","description":"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.","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:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/","og_locale":"en_US","og_type":"article","og_title":"Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal","og_description":"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.","og_url":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/","og_site_name":"Chethana\u2019s Dev Journal","article_published_time":"2026-07-16T01:46:27+00:00","article_modified_time":"2026-07-16T01:52:06+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg","type":"image\/jpeg"}],"author":"Chethana (admin)","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Chethana (admin)","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#article","isPartOf":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/"},"author":{"name":"Chethana (admin)","@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/085afcccf9fa629c6170b15861bcc428"},"headline":"Switch Docker Contexts Like a Pro","datePublished":"2026-07-16T01:46:27+00:00","dateModified":"2026-07-16T01:52:06+00:00","mainEntityOfPage":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/"},"wordCount":368,"commentCount":0,"publisher":{"@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054"},"image":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage"},"thumbnailUrl":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg","keywords":["Containers","DevOps","Docker","Linux","SysAdmin"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/","url":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/","name":"Switch Docker Contexts Like a Pro - Chethana\u2019s Dev Journal","isPartOf":{"@id":"https:\/\/chethana.me\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage"},"image":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage"},"thumbnailUrl":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg","datePublished":"2026-07-16T01:46:27+00:00","dateModified":"2026-07-16T01:52:06+00:00","description":"Master CLI commands to switch Docker contexts, manage native system engines, and instantly fix the infamous docker.sock permission denied error.","breadcrumb":{"@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#primaryimage","url":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg","contentUrl":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2026\/07\/Docker-Themed-Blog-Feature-Image-Design.jpg","width":1200,"height":628,"caption":"Switch Docker Contexts Like a Pro"},{"@type":"BreadcrumbList","@id":"https:\/\/chethana.me\/blog\/switch-docker-contexts-like-a-pro\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chethana.me\/blog\/"},{"@type":"ListItem","position":2,"name":"Switch Docker Contexts Like a Pro"}]},{"@type":"WebSite","@id":"https:\/\/chethana.me\/blog\/#website","url":"https:\/\/chethana.me\/blog\/","name":"Chethana\u2019s Dev Journal","description":"Code, innovate, inspire&mdash;stories from a software engineer&rsquo;s desk","publisher":{"@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chethana.me\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/6d50258eb1bb4f304a11f3b2ba98a054","name":"Chethana Kalpa","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/","url":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/01\/cropped-file-3.png","contentUrl":"https:\/\/chethana.me\/blog\/wp-content\/uploads\/2025\/01\/cropped-file-3.png","width":925,"height":370,"caption":"Chethana Kalpa"},"logo":{"@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/"},"description":"Hello \ud83d\udc4b I'm a passionate software engineer with nearly 6 years of experience. I love diving into new challenges, constantly learning, and finding creative solutions. And when I'm not coding, you'll find me immersed in the world of comic books!","sameAs":["http:\/\/chethana.me"]},{"@type":"Person","@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/085afcccf9fa629c6170b15861bcc428","name":"Chethana (admin)","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/chethana.me\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8cf9f6817681feeccb665272c484ac26fd328f1e36017b746f10c2ee97e14433?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8cf9f6817681feeccb665272c484ac26fd328f1e36017b746f10c2ee97e14433?s=96&d=mm&r=g","caption":"Chethana (admin)"},"sameAs":["http:\/\/chethana.me"],"url":"https:\/\/chethana.me\/blog\/author\/chethana\/"}]}},"_links":{"self":[{"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/posts\/31","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/comments?post=31"}],"version-history":[{"count":3,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/posts\/31\/revisions"}],"predecessor-version":[{"id":45,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/posts\/31\/revisions\/45"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/media\/42"}],"wp:attachment":[{"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/media?parent=31"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/categories?post=31"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/chethana.me\/blog\/wp-json\/wp\/v2\/tags?post=31"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}