{"id":118678,"date":"2018-03-30T14:21:20","date_gmt":"2018-03-30T14:21:20","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=118678"},"modified":"2025-12-29T06:57:36","modified_gmt":"2025-12-29T06:57:36","slug":"error-open-var-lib-docker-tmp-docker-import","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/","title":{"rendered":"Error: \/docker-import-012345678\/bin\/json: no such file or directory"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>What Steps Lead to the Docker <\/strong><code>\/bin\/json<\/code><strong> Error?<\/strong><\/h2>\n\n\n\n<p>During the process of importing a Docker image, the following steps were executed, which resulted in an error.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Steps Performed<\/strong><\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Switched to the Docker image directory path:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\">    cd docker\/directory\/image-path<\/pre>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Ran the Docker load command to import the image:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\">    cat docker_custom_image.tar | docker load<\/pre>\n\n\n\n<ol start=\"3\" class=\"wp-block-list\">\n<li>After executing the command, the following error occurred:<br>&#8220;<em>open \/var\/lib\/docker\/tmp\/docker-import-622414428\/bin\/json: no such file or directory<\/em>&#8220;<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"863\" height=\"56\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\" alt=\"docker load image\" class=\"wp-image-519090\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp 863w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load-300x19.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load-250x16.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load-768x50.webp 768w\" sizes=\"(max-width: 863px) 100vw, 863px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Does This Error Occur?<\/strong><\/h2>\n\n\n\n<p>This error occurs when <code>docker load<\/code> <strong>is used with an image created using <\/strong><code>docker export<\/code>.<\/p>\n\n\n\n<p>Modern versions of <strong>Docker<\/strong> strictly validate image metadata.<br>Images created with <code>docker export<\/code> do not contain the required layered structure and metadata files.<\/p>\n\n\n\n<p>As a result, Docker fails to load the image and throws the <code>\/bin\/json<\/code> error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is the Correct Docker Image Workflow?<\/strong><\/h2>\n\n\n\n<p>Docker image commands must always be used in matching pairs.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>docker save &#8211;<\/strong><strong>><\/strong><strong> docker load<\/strong><\/li>\n\n\n\n<li><strong>docker export &#8211;<\/strong><strong>><\/strong><strong> docker import<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Using the wrong combination leads to missing files such as <code>manifest.json<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Can This Issue Be Fixed?<\/strong><\/h2>\n\n\n\n<p>One commonly suggested approach to fix this issue is to manually create the <code>tmp<\/code> directory inside <code>\/var\/lib\/docker\/<\/code>.<\/p>\n\n\n\n<p>However, in this case, this solution did not resolve the problem. Further investigation was required to identify the correct fix.<\/p>\n\n\n\n<p>The root cause was the incorrect Docker image import method.<\/p>\n\n\n\n<p>If the image was originally created using <code>docker export<\/code>, it must be imported using <code>docker import<\/code> instead of <code>docker load<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Correct Command<\/strong><\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">cat docker_custom_image.tar | docker import - custom_docker\/image:latest<\/pre>\n\n\n\n<p>After running this command, verify the image using:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">docker images<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"960\" height=\"80\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/docimage.webp\" alt=\"docker images\" class=\"wp-image-519078\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/docimage.webp 960w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/docimage-300x25.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/docimage-250x21.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/docimage-768x64.webp 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Are Manual Fixes Not Recommended?<\/strong><\/h2>\n\n\n\n<p>Some older solutions suggest manually creating <code>\/var\/lib\/docker\/tmp<\/code>.<\/p>\n\n\n\n<p>This is not recommended because:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Docker manages system directories internally<\/li>\n\n\n\n<li>Manual changes can cause permission or security issues<\/li>\n\n\n\n<li>The root cause of the error remains unresolved<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions (FAQs)<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why does Docker complain about <\/strong><code>\/bin\/json<\/code><strong>?<\/strong><\/h3>\n\n\n\n<p>Because the tar file lacks required image metadata.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Is this error related to Docker bugs?<\/strong><\/h3>\n\n\n\n<p>No. It\u2019s expected behavior based on image format.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What\u2019s the safest way to move images today?<\/strong><\/h3>\n\n\n\n<p>Use <code>docker save<\/code> and <code>docker load<\/code>.<\/p>\n\n\n\n<p>No. It\u2019s expected behavior based on image format.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What\u2019s the safest way to move images today?<\/strong><\/h3>\n\n\n\n<p>Use <code>docker save<\/code> and <code>docker load<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>The <code>\/bin\/json<\/code> error is not a Docker bug.<br>It is caused by a mismatch between image creation and import commands.<\/p>\n\n\n\n<p>Using the correct Docker workflow ensures compatibility with modern Docker versions and prevents this issue.<\/p>\n\n\n<p><span style=\"color: #003366;\"><strong>We would love the hear your thoughts, suggestions, and questions in the comments below !!<\/strong><\/span><\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What Steps Lead to the Docker \/bin\/json Error? During the process of importing a Docker image, the following steps were executed, which resulted in an error. Steps Performed cd docker\/directory\/image-path cat docker_custom_image.tar | docker load Why Does This Error Occur? This error occurs when docker load is used with an image created using docker export. <a href=\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":90,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10,1],"tags":[2209,188,236,266],"class_list":["post-118678","post","type-post","status-publish","format-standard","hentry","category-ubuntu","category-uncategorized","tag-docker","tag-error","tag-json","tag-ubuntu-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory<\/title>\n<meta name=\"description\" content=\"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory\" \/>\n<meta property=\"og:description\" content=\"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-30T14:21:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-29T06:57:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\" \/>\n<meta name=\"author\" content=\"Ashish Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashish Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\"},\"author\":{\"name\":\"Ashish Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d\"},\"headline\":\"Error: \/docker-import-012345678\/bin\/json: no such file or directory\",\"datePublished\":\"2018-03-30T14:21:20+00:00\",\"dateModified\":\"2025-12-29T06:57:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\"},\"wordCount\":386,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\",\"keywords\":[\"docker\",\"error\",\"json\",\"ubuntu\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\",\"url\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\",\"name\":\"Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\",\"datePublished\":\"2018-03-30T14:21:20+00:00\",\"dateModified\":\"2025-12-29T06:57:36+00:00\",\"description\":\"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp\",\"width\":863,\"height\":56},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Error: \/docker-import-012345678\/bin\/json: no such file or directory\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d\",\"name\":\"Ashish Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ashish Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ashish067\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory","description":"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.","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:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/","og_locale":"en_US","og_type":"article","og_title":"Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory","og_description":"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.","og_url":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-03-30T14:21:20+00:00","article_modified_time":"2025-12-29T06:57:36+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp","type":"","width":"","height":""}],"author":"Ashish Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ashish Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/"},"author":{"name":"Ashish Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d"},"headline":"Error: \/docker-import-012345678\/bin\/json: no such file or directory","datePublished":"2018-03-30T14:21:20+00:00","dateModified":"2025-12-29T06:57:36+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/"},"wordCount":386,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp","keywords":["docker","error","json","ubuntu"],"articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/","url":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/","name":"Error response from daemon: open \/var\/lib\/docker\/tmp\/docker-import\/bin\/json: no such file or directory","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp","datePublished":"2018-03-30T14:21:20+00:00","dateModified":"2025-12-29T06:57:36+00:00","description":"Would only work if the image is created as a layered docker image, not as a tar ball. Basically correct way to import the image, Use docker import for image exported by docker export. Use docker load for image exported by docker save.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2018\/03\/load.webp","width":863,"height":56},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/error-open-var-lib-docker-tmp-docker-import\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Error: \/docker-import-012345678\/bin\/json: no such file or directory"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d","name":"Ashish Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ashish Singh"},"url":"https:\/\/webkul.com\/blog\/author\/ashish067\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/118678","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/90"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=118678"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/118678\/revisions"}],"predecessor-version":[{"id":519110,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/118678\/revisions\/519110"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=118678"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=118678"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=118678"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}