{"id":45037,"date":"2024-06-28T11:28:04","date_gmt":"2024-06-28T11:28:04","guid":{"rendered":"https:\/\/accuweb.cloud\/resource\/?post_type=faq&#038;p=45037"},"modified":"2026-02-18T12:07:26","modified_gmt":"2026-02-18T12:07:26","slug":"cli-container-redeploy","status":"publish","type":"faq","link":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy","title":{"rendered":"Redeploying Containers with the CLI"},"content":{"rendered":"<h2 class=\"ack-h2\">Redeploying Containers with the CLI<\/h2>\n<p>This guide provides the procedure to <a class=\"ack-link-color\" href=\"https:\/\/accuweb.cloud\/resource\/articles\/redeploy-docker-container\/\" target=\"_blank\" rel=\"noopener\">redeploy<\/a> a container with a different image tag and, optionally, redeploy it with all the layers.<\/p>\n<p><strong>Prerequisites:<\/strong><\/p>\n<p>Make sure you have installed Platform CLI on your local machine. (Ref: Platform CLI) In this context, the word \u201c<strong>container<\/strong>\u201d means application node.<\/p>\n<h2 class=\"ack-h2\">Step 1: Get Environment and Container Information<\/h2>\n<p>First, get the name of the environment and the ID of the node or layer of the container to be used in its redeployment. This can be done via the dashboard or by issuing directly from the terminal the methods GetEnvs and GetEnvInfo to get data on all or a specific environment.<\/p>\n<ul class=\"ack-ul\">\n<li><strong>GetEnvs (will list all the available environments list):<\/strong><\/li>\n<\/ul>\n<p><strong>Example:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/elastic\/environment\/control\/getenvs | grep envName\r\n<\/code><\/pre>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-45081 size-full\" title=\"Environments Lists\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1.png\" alt=\"Environments Lists\" width=\"1104\" height=\"168\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1.png 1104w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1-300x46.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1-1024x156.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI01-1-768x117.png 768w\" sizes=\"(max-width: 1104px) 100vw, 1104px\" \/><\/a><\/p>\n<ul class=\"ack-ul\">\n<li><strong>GetEnvInfo (will give details of given envName):<\/strong><\/li>\n<\/ul>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/elastic\/environment\/control\/getenvinfo --envname {envName}\r\n<\/code><\/pre>\n<p><strong>Example:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/elastic\/environment\/control\/getenvinfo --envname accu-api\r\n<\/code><\/pre>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI02-1.png\"><img decoding=\"async\" class=\"ack-article-image aligncenter wp-image-45082 size-full\" title=\"Environment Info\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI02-1.png\" alt=\"Environment Info\" width=\"676\" height=\"413\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI02-1.png 676w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI02-1-300x183.png 300w\" sizes=\"(max-width: 676px) 100vw, 676px\" \/><\/a><\/p>\n<h2 class=\"ack-h2\">Step 2: Fetch Available Tags (that will be available versions)<\/h2>\n<p>With the container\u2019s ID and layer (node group name) at hand, view the available tags for the image using the GetContainerNodeTags method. Pass the environment name and node id (it will be an <strong>id<\/strong> field under <strong>node<\/strong> key in the json response) as parameters.<\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/jelastic\/environment\/control\/getcontainernodetags --envName {envName} --nodeId {nodeId}\r\n<\/code><\/pre>\n<p><strong>Example:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/jelastic\/environment\/control\/getcontainernodetags --envName accu-api --nodeId 5333\r\n<\/code><\/pre>\n<p>This command will list all tags for the specified node.<\/p>\n<h2><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI03-1.png\"><img decoding=\"async\" class=\"ack-article-image aligncenter wp-image-45083 size-full\" title=\"Node Tag Lists\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI03-1.png\" alt=\"Node Tag Lists\" width=\"862\" height=\"435\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI03-1.png 862w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI03-1-300x151.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI03-1-768x388.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/a><\/h2>\n<h2>Step 3: Redeploy the Container<\/h2>\n<p>Redeploy a container via CLI using the command given below by providing relevant parameters to the RedeployContainers method:<\/p>\n<p><strong>Command:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/elastic\/environment\/control\/redeploycontainers --envName {envName} [--nodeGroup {nodeGroup}] [--nodeId {nodeId}] --tag {tag} [--useExistingVolumes {useExistingVolumes}] [--login {login}] [--password {password}]\r\n<\/code><\/pre>\n<div class=\"ack-formula\"><strong>Note:<\/strong> Parameters in square brackets <strong>\u201c[ ]\u201d<\/strong> are optional, and there in square brackets because of visual representation actual command will not have brackets<\/div>\n<div class=\"article-space\"><\/div>\n<p><strong>Example:<\/strong><\/p>\n<pre><code class=\"language-javascript\">\r\n~\/elastic\/environment\/control\/redeploycontainers --envName accu-api --nodeGroup cp --nodeId 5333 --tag 2.4.58-php-8.3.4-almalinux-9 --useExistingVolumes true\r\n<\/code><\/pre>\n<p><a href=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041.png\"><img loading=\"lazy\" decoding=\"async\" class=\"ack-article-image aligncenter wp-image-45085 size-full\" title=\"Redeploy Container\" src=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041.png\" alt=\"Redeploy Container\" width=\"1600\" height=\"317\" srcset=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041.png 1600w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041-300x59.png 300w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041-1024x203.png 1024w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041-768x152.png 768w, https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/06\/Redeploy-container-X-CLI041-1536x304.png 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/a><\/p>\n<p><strong>Parameters:<\/strong><\/p>\n<ul class=\"ack-ul\">\n<li><strong>envName<\/strong>: The name of the environment where the container(s) is present.<\/li>\n<li><strong>nodeGroup<\/strong>: Identifier of the <a class=\"ack-link-color\" href=\"https:\/\/docs.cloudscripting.com\/creating-manifest\/selecting-containers\/#all-containers-by-group\" target=\"_blank\" rel=\"noopener\">environment layer<\/a> to update (optional).<\/li>\n<li><strong>nodeId<\/strong>: ID of the specific container to redeploy (optional). Note that either nodeGroup or nodeId must be provided.<\/li>\n<li><strong>tag<\/strong>: The image version to be deployed.<\/li>\n<li><strong>useExistingVolumes<\/strong>: Set to true to retain data in mounted volumes within the updated container(s) (optional).<\/li>\n<li><strong>login and password<\/strong>: Credentials for accessing an image from a private registry (optional).<\/li>\n<\/ul>\n<p>The process might take a few minutes and should conclude with a \u201c<strong>result<\/strong>\u201d: 0 indicating success. The response will include the versions before and after the redeployment and the duration of each container\u2019s update.<\/p>\n<div class=\"cta-btn-top-space ack-extra-image-space\">\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<\/div>\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-45037","faq","type-faq","status-publish","has-post-thumbnail","hentry","faq_topics-api-cli","faq_topics-cli-container-redeploy","faq_topics-development-tools","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>Container redeploy using CLI | Accueb.Cloud Guide<\/title>\n<meta name=\"description\" content=\"Discover how to redeploy the container using the command line interface and an alternate image tag.\" \/>\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-container-redeploy\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Redeploying Containers with the CLI\" \/>\n<meta property=\"og:description\" content=\"Discover how to redeploy the container using the command line interface and an alternate image tag.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy\" \/>\n<meta property=\"og:site_name\" content=\"AccuWeb Cloud\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-18T12:07:26+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=\"3 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-container-redeploy#article\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy\"},\"author\":{\"name\":\"Jilesh Patadiya\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\"},\"headline\":\"Redeploying Containers with the CLI\",\"datePublished\":\"2024-06-28T11:28:04+00:00\",\"dateModified\":\"2026-02-18T12:07:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy\"},\"wordCount\":356,\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#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-container-redeploy\",\"url\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy\",\"name\":\"Container redeploy using CLI | Accueb.Cloud Guide\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#primaryimage\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"datePublished\":\"2024-06-28T11:28:04+00:00\",\"dateModified\":\"2026-02-18T12:07:26+00:00\",\"description\":\"Discover how to redeploy the container using the command line interface and an alternate image tag.\",\"breadcrumb\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#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-container-redeploy#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/accuweb.cloud\/resource\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Redeploying Containers with the CLI\"}]},{\"@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":"Container redeploy using CLI | Accueb.Cloud Guide","description":"Discover how to redeploy the container using the command line interface and an alternate image tag.","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-container-redeploy","og_locale":"en_US","og_type":"article","og_title":"Redeploying Containers with the CLI","og_description":"Discover how to redeploy the container using the command line interface and an alternate image tag.","og_url":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy","og_site_name":"AccuWeb Cloud","article_modified_time":"2026-02-18T12:07:26+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#article","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy"},"author":{"name":"Jilesh Patadiya","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58"},"headline":"Redeploying Containers with the CLI","datePublished":"2024-06-28T11:28:04+00:00","dateModified":"2026-02-18T12:07:26+00:00","mainEntityOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy"},"wordCount":356,"publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#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-container-redeploy","url":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy","name":"Container redeploy using CLI | Accueb.Cloud Guide","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/#website"},"primaryImageOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#primaryimage"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","datePublished":"2024-06-28T11:28:04+00:00","dateModified":"2026-02-18T12:07:26+00:00","description":"Discover how to redeploy the container using the command line interface and an alternate image tag.","breadcrumb":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/articles\/cli-container-redeploy#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-container-redeploy#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/accuweb.cloud\/resource\/"},{"@type":"ListItem","position":2,"name":"Redeploying Containers with the CLI"}]},{"@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\/45037","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=45037"}],"version-history":[{"count":8,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/45037\/revisions"}],"predecessor-version":[{"id":53088,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/45037\/revisions\/53088"}],"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=45037"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}