From 1f963d80f49ab3d0e9380f3ce708c658f43b4eb2 Mon Sep 17 00:00:00 2001 From: Anna Shumilova Date: Wed, 12 Jul 2017 14:02:17 +0300 Subject: [PATCH] Fix machine's default docker image Signed-off-by: Anna Shumilova --- .../add-machine-dialog/add-machine-dialog.controller.ts | 2 +- dashboard/src/components/api/che-stack.factory.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts index a40bc7a326..8660517ea9 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts @@ -79,7 +79,7 @@ export class AddMachineDialogController { 'servers': {}, 'attributes': {} }; - this.machineRecipeScript = 'new-machine:\n image: codenvy/ubuntu_jdk8\n mem_limit: 2147483648\n'; + this.machineRecipeScript = 'new-machine:\n image: eclipse/ubuntu_jdk8\n mem_limit: 2147483648\n'; this.updateMachineRecipe(); if (this.isUnique(this.machineName)) { return; diff --git a/dashboard/src/components/api/che-stack.factory.ts b/dashboard/src/components/api/che-stack.factory.ts index 0bf92773c4..eed69cd82d 100644 --- a/dashboard/src/components/api/che-stack.factory.ts +++ b/dashboard/src/components/api/che-stack.factory.ts @@ -88,7 +88,7 @@ export class CheStack { } }, 'recipe': { - 'content': 'services:\n dev-machine:\n image: codenvy/ubuntu_jdk8\n', + 'content': 'services:\n dev-machine:\n image: eclipse/ubuntu_jdk8\n', 'contentType': 'application/x-yaml', 'type': 'compose' }