{"id":41811,"date":"2024-05-21T11:15:25","date_gmt":"2024-05-21T11:15:25","guid":{"rendered":"https:\/\/accuweb.cloud\/resource\/?post_type=faq&#038;p=41811"},"modified":"2026-02-19T05:19:09","modified_gmt":"2026-02-19T05:19:09","slug":"cli-environment-creation","status":"publish","type":"faq","link":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation","title":{"rendered":"Environment Creation"},"content":{"rendered":"<h2 class=\"ack-h2\">Environment Creation<\/h2>\n<p>Creating environments via the command line can be useful for various solutions, such as managing complex DevOps scenarios. Let&#8217;s explore how this can be accomplished.<\/p>\n<p><strong>1.<\/strong> First, we&#8217;ll look at several ways this operation can be performed.<\/p>\n<p>The simplest method to create a new environment with CLI is to manually declare the required parameters through the appropriate command. Just run the <strong>createenvironment<\/strong> method with your customized parameters:<\/p>\n<pre><code class=\"language-javascript\">\r\n~\/jelastic\/environment\/control\/createenvironment --env '{\"shortdomain\" : \" {env_name}\", \"engine\" : \" {engine_type}\"}' --nodes '[{\"nodeType\" : \" {node_type}\", \"fixedCloudlets\" : {cloudlets_amount}, \"flexibleCloudlets\" : {cloudlets_amount}}]'<\/code><\/pre>\n<p>In the highlighted example, replace the placeholders with the following data:<\/p>\n<p>In the highlighted example, replace the placeholders with the following data:<\/p>\n<p><strong>{env_name}<\/strong> &#8211; a chosen name for the new environment.<\/p>\n<p><strong>{engine_type}<\/strong> &#8211; the selected engine to be used in this environment.<\/p>\n<p><strong>{node_type}<\/strong> &#8211; the stack type identifier, which corresponds to the <strong>list<\/strong> of available options.<\/p>\n<p><strong>{cloudlets_amount}<\/strong> &#8211; the total number of fixed and flexible cloudlets to allocate for a particular node.<\/p>\n<div class=\"ack-formula\">\n<strong>Tip:<\/strong> You can find more detailed information about available parameters within the corresponding API method description and in the CreateEnvironment API overview.<\/div>\n<div class=\"article-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41813 size-full\" title=\"Create Environment API overview\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview.png\" alt=\"Create Environment API overview\" width=\"1600\" height=\"774\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview.png 1600w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview-300x145.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview-1024x495.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview-768x372.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Environment-API-overview-1536x743.png 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/a><\/p>\n<p>Take note that in the image provided above, the CLI response indicated a result property equal to <strong>0<\/strong>. This indicates that the operation was successful and without errors. This applies to all commands you run.<\/p>\n<p>Another option supported by the platform CLI is to use a JSON file containing all of your environment&#8217;s parameters. Once created, this file can be used multiple times, which is much faster and more convenient than defining everything manually each time.<\/p>\n<p>For example, let\u2019s create a simple JSON file with the following environment topology:<\/p>\n<pre><code class=\"language-javascript\">\r\n{\r\n\"env\": {\r\n\"shortdomain\": \"{env_name}\",\r\n\"engine\": \"{engine_type}\"\r\n},\r\n\"nodes\": [\r\n{\r\n\"nodeType\": \"{node_type}\",\r\n\"fixedCloudlets\": \"{cloudlets_amount}\",\r\n\"flexibleCloudlets\": \"{cloudlets_amount}\"\r\n}\r\n]\r\n}<\/code><\/pre>\n<p>Just ensure to modify the highlighted parameters as described in the previous step.<\/p>\n<div class=\"article-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"article-space\"><\/div>\n<p>Now, to create an environment, simply use the <strong>createenvironment<\/strong> method with a single &#8211;myparams parameter, which includes the path to your .json file as its value (or just its name if it\u2019s located within the user\u2019s home folder):<\/p>\n<pre><code class=\"language-javascript\">\r\n~\/jelastic\/environment\/control\/createenvironment --myparams {path_to_file}<\/code><\/pre>\n<p>Additionally, you have the option to redefine or add certain settings (namely &#8211;shortdomain,, and &#8211;displayName) to the env section of your configuration file. You can specify these settings inside square brackets within the method parameters. For example, using the optional &#8211;shortdomain string (as shown in the image below), you can override the same-named setting from JSON, allowing the environment to be created with the same topology but under a different name.<\/p>\n<p><strong>2.<\/strong> Creating a Docker-based environment is almost similar to the methods described above, but involves a few specific parameters. To deploy a Docker container using the platform CLI, execute the following command:<\/p>\n<pre><code class=\"language-javascript\">\r\n~\/jelastic\/environment\/control\/createenvironment --env '{\"shortdomain\" : \"{env_name}\"}' --nodes '[{\"nodeType\" : \"docker\", \"fixedCloudlets\" : {cloudlets_amount}, \"flexibleCloudlets\" : {cloudlets_amount}, \"docker\" : {\"image\" : \"{image_name}\"}}]'<\/code><\/pre>\n<p>According to the command above, the `<strong>nodeType<\/strong>` parameter needs to be set to `<strong>docker<\/strong>`, and the newly added `<strong>{image_name}<\/strong>` placeholder should be replaced with the address of the Docker template you&#8217;d like to deploy (in the `<strong>server.com\/images\/image_name:tag<\/strong>` format).<\/p>\n<p>As per the command above, the parameter should be configured as `docker`. Additionally, replace the newly added `{image_name}` placeholder with the address of the Docker template you wish to deploy, adhering to the `server.com\/images\/image_name:tag` format.<\/p>\n<p><strong>Here&#8217;s a breakdown:<\/strong><\/p>\n<ul class=\"ack-ul\">\n<li>If the template is located within the Registry Hub, you can skip the registry hostname.<\/li>\n<li>Optionally, you can add the version tag after the &#8220;:&#8221; separator at the end of the image address.<\/li>\n<li>To authenticate at a private registry, declare the additional `<strong>registry<\/strong>` parameter with the URL to it, and provide the appropriate credentials (i.e., password and username) as values.<\/li>\n<\/ul>\n<div class=\"ack-formula\">\n<strong>Tip:<\/strong> You can find more detailed information about available parameters within the corresponding API method description and at the CreateEnvironment API overview.<\/div>\n<div class=\"article-space\"><\/div>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment.png\"><img decoding=\"async\" class=\"ack-article-image aligncenter wp-image-41815 size-full\" title=\"Create Docker Environment\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment.png\" alt=\"Create Docker Environment\" width=\"1600\" height=\"338\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment.png 1600w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment-300x63.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment-1024x216.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment-768x162.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/05\/Create-Docker-Environment-1536x324.png 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/a><\/p>\n<p>In a short while, your Docker-based environment will be created and ready to use.<\/p>\n<div class=\"cta-btn-top-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"cta-btn-mob-space\"><\/div>\n","protected":false},"author":1,"featured_media":52879,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","class_list":["post-41811","faq","type-faq","status-publish","has-post-thumbnail","hentry","faq_topics-api-cli","faq_topics-development-tools","faq_topics-environment-creation","faq_topics-kb","faq_topics-platform-cli","faq_topics-product-documentation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.10 (Yoast SEO v24.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create an environment with CLI | AccuWeb.Cloud Guide<\/title>\n<meta name=\"description\" content=\"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Environment Creation\" \/>\n<meta property=\"og:description\" content=\"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\" \/>\n<meta property=\"og:site_name\" content=\"AccuWeb Cloud\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-19T05:19:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#article\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\"},\"author\":{\"name\":\"Jilesh Patadiya\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\"},\"headline\":\"Environment Creation\",\"datePublished\":\"2024-05-21T11:15:25+00:00\",\"dateModified\":\"2026-02-19T05:19:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\"},\"wordCount\":605,\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\",\"url\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\",\"name\":\"Create an environment with CLI | AccuWeb.Cloud Guide\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"datePublished\":\"2024-05-21T11:15:25+00:00\",\"dateModified\":\"2026-02-19T05:19:09+00:00\",\"description\":\"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.\",\"breadcrumb\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/accuweb.cloud\/resource\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Environment Creation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"name\":\"AccuWeb Cloud\",\"description\":\"Cutting Edge Cloud Computing\",\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\",\"name\":\"AccuWeb.Cloud\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"width\":156,\"height\":87,\"caption\":\"AccuWeb.Cloud\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\",\"name\":\"Jilesh Patadiya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"caption\":\"Jilesh Patadiya\"},\"description\":\"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.\",\"sameAs\":[\"https:\/\/accuweb.cloud\/resource\",\"https:\/\/www.facebook.com\/accuwebhosting\",\"https:\/\/www.instagram.com\/accuwebhosting\/\",\"https:\/\/www.linkedin.com\/company\/accuwebhosting\/\",\"https:\/\/x.com\/accuwebhosting\",\"https:\/\/www.youtube.com\/c\/Accuwebhosting\"],\"url\":\"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Create an environment with CLI | AccuWeb.Cloud Guide","description":"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.","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:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation","og_locale":"en_US","og_type":"article","og_title":"Environment Creation","og_description":"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.","og_url":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation","og_site_name":"AccuWeb Cloud","article_modified_time":"2026-02-19T05:19:09+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#article","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation"},"author":{"name":"Jilesh Patadiya","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58"},"headline":"Environment Creation","datePublished":"2024-05-21T11:15:25+00:00","dateModified":"2026-02-19T05:19:09+00:00","mainEntityOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation"},"wordCount":605,"publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","inLanguage":"en-US"},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation","url":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation","name":"Create an environment with CLI | AccuWeb.Cloud Guide","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/#website"},"primaryImageOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","datePublished":"2024-05-21T11:15:25+00:00","dateModified":"2026-02-19T05:19:09+00:00","description":"Learn how to create environments using the CLI. Manage DevOps scenarios and simplify environment creation. Get step-by-step guidance here.","breadcrumb":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#primaryimage","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-environment-creation#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/accuweb.cloud\/resource\/"},{"@type":"ListItem","position":2,"name":"Environment Creation"}]},{"@type":"WebSite","@id":"https:\/\/accuweb.cloud\/resource\/#website","url":"https:\/\/accuweb.cloud\/resource\/","name":"AccuWeb Cloud","description":"Cutting Edge Cloud Computing","publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/accuweb.cloud\/resource\/#organization","name":"AccuWeb.Cloud","url":"https:\/\/accuweb.cloud\/resource\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","width":156,"height":87,"caption":"AccuWeb.Cloud"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58","name":"Jilesh Patadiya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","caption":"Jilesh Patadiya"},"description":"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.","sameAs":["https:\/\/accuweb.cloud\/resource","https:\/\/www.facebook.com\/accuwebhosting","https:\/\/www.instagram.com\/accuwebhosting\/","https:\/\/www.linkedin.com\/company\/accuwebhosting\/","https:\/\/x.com\/accuwebhosting","https:\/\/www.youtube.com\/c\/Accuwebhosting"],"url":"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin"}]}},"_links":{"self":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41811","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq"}],"about":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/types\/faq"}],"author":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/comments?post=41811"}],"version-history":[{"count":4,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41811\/revisions"}],"predecessor-version":[{"id":53235,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/41811\/revisions\/53235"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media\/52879"}],"wp:attachment":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media?parent=41811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}