{"id":4613,"date":"2020-02-28T17:14:19","date_gmt":"2020-02-28T15:14:19","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=4613"},"modified":"2020-02-28T14:16:05","modified_gmt":"2020-02-28T12:16:05","slug":"docker-in-windows-moving-a-mounting","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/","title":{"rendered":"Docker in Windows Moving A Mounting"},"content":{"rendered":"\n<p>Using docker in Windows is a bit like discovering that someone\u2019s missed a vital memo. Everything <em>nearly<\/em> works as you might hope, but there are glitches all over the place.<\/p>\n\n\n\n<p>I use <em>bash<\/em> as my shell for scripting various things we do with docker in Windows. This leads to two enormously annoying issues:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>I\u2019ve found it very difficult to mount the working directory into the container I\u2019ve just launched<\/li><li>Giving a docker container a working directory seems to result in \u201cThe directory name is invalid\u201d<\/li><\/ul>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"500\" height=\"308\" src=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2020\/02\/photo-1570913179118-f3d24be1d1f7.jpg\" alt=\"\" class=\"wp-image-4615\" srcset=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2020\/02\/photo-1570913179118-f3d24be1d1f7.jpg 500w, https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2020\/02\/photo-1570913179118-f3d24be1d1f7-300x185.jpg 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/><\/figure><\/div>\n\n\n\n<p>Let\u2019s look at what we want to do:<\/p>\n\n\n\n<div>\n<div id=\"highlighter_645952\" class=\"syntaxhighlighter  bash\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"gutter\">\n<div class=\"line number1 index0 alt2\">1<\/div>\n<\/td>\n<td class=\"code\">\n<div class=\"container\">\n<div class=\"line number1 index0 alt2\"><code class=\"bash plain\">docker run -<\/code><code class=\"bash functions\">v<\/code> <code class=\"bash plain\">$(<\/code><code class=\"bash functions\">pwd<\/code><code class=\"bash plain\">):<\/code><code class=\"bash plain\">\/var\/myproject<\/code> <code class=\"bash plain\">-w <\/code><code class=\"bash plain\">\/var\/myproject<\/code> <code class=\"bash plain\">someimage:latest somecommand<\/code><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n\n\n\n<p>Let\u2019s unpack what the above is trying to do. Note, I think the above command should work on a linux\/MacOS bash, and there\u2019s a potential variant of it that might work in PowerShell\u2026 yet, it won\u2019t work on GitBash or similar bash shells in Windows.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>-v $(pwd):\/var\/myproject<\/code> \u2013 I do this sort of thing a lot when dockerising tools to run on my project folder, so they\u2019re portable across machines that don\u2019t have everything installed \u2013 it\u2019s trying to mount the current working directory to a nice neutral path <code>\/var\/myproject<\/code> on the target container<\/li><li><code>-w \/var\/myproject<\/code> \u2013 given I mounted my working directory, let\u2019s make it the working directory of the running container<\/li><li><code>someimage:latest<\/code> \u2013 replaced with the actual image \u2013 e.g. <code>node:10.6.1<\/code> or somesuch<\/li><li><code>somecommand<\/code> \u2013 whatever we\u2019re running on the working directory \u2013 e.g. <code>npm install<\/code> or whatever<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">These Two Simple Tricks Will Blow Your Mind<\/h2>\n\n\n\n<p>You need to know why the above fails on Windows:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>$(pwd)<\/code> returns the path in unix style \u2013 e.g. <code>\/c\/foo\/bar\/<\/code> where Windows docker (annoyingly) requires volume mounts in native windows \u2013 e.g. <code>C:\/foo\/bar\/<\/code><\/li><li><code>\/var\/myproject<\/code> on the command line is treated as a local file no matter how you quote it, and the bash invocation refuses to let it pass to the docker runtime because it\u2019s not a valid local path<\/li><\/ul>\n\n\n\n<p>Here\u2019s the fix:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>$(pwd)<\/code> =&gt; <code>$(pwd -W)<\/code> \u2013 the <code>-W<\/code> switch makes bash use the windows native path, not the unixey alternative<\/li><li><code>\/var\/myproject<\/code> =&gt; <code>\/\/var\/myproject<\/code> \u2013 this double slash makes the shell agree that this can\u2019t be a local file, so it just passes it on!<\/li><\/ul>\n\n\n\n<p>It\u2019s trivial when you know\u2026 but annoyingly not self-evident.<\/p>\n\n\n\n<p>I know I\u2019ll be coming back to this post to remind myself of how to fix the above. I hope it\u2019s been useful for you too.<\/p>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on System Code Geeks with permission by Ashley Frieze, partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener noreferrer\">SCG program<\/a>. See the original article here: <a href=\"https:\/\/codingcraftsman.wordpress.com\/2020\/02\/07\/docker-in-windows-moving-a-mounting\/\" target=\"_blank\" rel=\"noopener noreferrer\">Docker in Windows Moving A Mounting<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Using docker in Windows is a bit like discovering that someone\u2019s missed a vital memo. Everything nearly works as you might hope, but there are glitches all over the place. I use bash as my shell for scripting various things we do with docker in Windows. This leads to two enormously annoying issues: I\u2019ve found &hellip;<\/p>\n","protected":false},"author":6317,"featured_media":202,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[42],"class_list":["post-4613","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows","tag-docker"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Docker in Windows Moving A Mounting - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.\" \/>\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.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Docker in Windows Moving A Mounting - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-28T15:14:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ashley Frieze\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashley Frieze\" \/>\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.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\"},\"author\":{\"name\":\"Ashley Frieze\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/a0aa9aec3aac44dd0d4a4c3756d6af79\"},\"headline\":\"Docker in Windows Moving A Mounting\",\"datePublished\":\"2020-02-28T15:14:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\"},\"wordCount\":426,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg\",\"keywords\":[\"Docker\"],\"articleSection\":[\"Windows\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\",\"name\":\"Docker in Windows Moving A Mounting - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg\",\"datePublished\":\"2020-02-28T15:14:19+00:00\",\"description\":\"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/windows\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Docker in Windows Moving A Mounting\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/a0aa9aec3aac44dd0d4a4c3756d6af79\",\"name\":\"Ashley Frieze\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d753fc078e89e8592e03ff7a6420076b218f9979578b537d0434a60274d9c557?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d753fc078e89e8592e03ff7a6420076b218f9979578b537d0434a60274d9c557?s=96&d=mm&r=g\",\"caption\":\"Ashley Frieze\"},\"description\":\"Software developer, stand-up comedian, musician, writer, jolly big cheer-monkey, skeptical thinker, Doctor Who fan, lover of fine sounds\",\"sameAs\":[\"https:\/\/codingcraftsman.wordpress.com\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/ashley-frieze\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Docker in Windows Moving A Mounting - System Code Geeks - 2026","description":"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.","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.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/","og_locale":"en_US","og_type":"article","og_title":"Docker in Windows Moving A Mounting - System Code Geeks - 2026","og_description":"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.","og_url":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2020-02-28T15:14:19+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg","type":"image\/jpeg"}],"author":"Ashley Frieze","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Ashley Frieze","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/"},"author":{"name":"Ashley Frieze","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/a0aa9aec3aac44dd0d4a4c3756d6af79"},"headline":"Docker in Windows Moving A Mounting","datePublished":"2020-02-28T15:14:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/"},"wordCount":426,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg","keywords":["Docker"],"articleSection":["Windows"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/","url":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/","name":"Docker in Windows Moving A Mounting - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg","datePublished":"2020-02-28T15:14:19+00:00","description":"Interested to learn about Docker in Windows? Check our article explaining how to overcoem the glitches when you use docker in windows.","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/windows-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/windows\/docker-in-windows-moving-a-mounting\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Windows","item":"https:\/\/www.systemcodegeeks.com\/category\/windows\/"},{"@type":"ListItem","position":3,"name":"Docker in Windows Moving A Mounting"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/a0aa9aec3aac44dd0d4a4c3756d6af79","name":"Ashley Frieze","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d753fc078e89e8592e03ff7a6420076b218f9979578b537d0434a60274d9c557?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d753fc078e89e8592e03ff7a6420076b218f9979578b537d0434a60274d9c557?s=96&d=mm&r=g","caption":"Ashley Frieze"},"description":"Software developer, stand-up comedian, musician, writer, jolly big cheer-monkey, skeptical thinker, Doctor Who fan, lover of fine sounds","sameAs":["https:\/\/codingcraftsman.wordpress.com"],"url":"https:\/\/www.systemcodegeeks.com\/author\/ashley-frieze\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4613","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/6317"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4613"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4613\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/202"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4613"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4613"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4613"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}