mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
version bump
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Kitematic",
|
||||
"version": "0.5.23",
|
||||
"version": "0.5.24",
|
||||
"author": "Kitematic",
|
||||
"description": "Simple Docker Container management for Mac OS X.",
|
||||
"homepage": "https://kitematic.com/",
|
||||
@@ -47,7 +47,7 @@
|
||||
"<rootDir>/node_modules/source-map-support"
|
||||
]
|
||||
},
|
||||
"docker-version": "1.6.0",
|
||||
"docker-version": "1.6.1",
|
||||
"docker-machine-version": "0.2.0",
|
||||
"electron-version": "0.24.0",
|
||||
"virtualbox-version": "4.3.26",
|
||||
|
||||
@@ -71,8 +71,6 @@ var Containers = React.createClass({
|
||||
this.context.router.transitionTo('containerHome', {name: name});
|
||||
} else if (status === 'pending' && ContainerStore.pending()) {
|
||||
this.context.router.transitionTo('pull');
|
||||
} else if (status === 'destroy') {
|
||||
this.onDestroy();
|
||||
}
|
||||
},
|
||||
handleScroll: function (e) {
|
||||
|
||||
@@ -63,7 +63,10 @@ var _steps = [{
|
||||
run: Promise.coroutine(function* (progressCallback) {
|
||||
setupUtil.simulateProgress(this.seconds, progressCallback);
|
||||
var exists = yield machine.exists();
|
||||
if (!exists) {
|
||||
if (!exists || (yield machine.state()) === 'Error') {
|
||||
if ((yield machine.state()) === 'Error') {
|
||||
yield machine.rm();
|
||||
}
|
||||
yield machine.create();
|
||||
if(util.isWindows()) {
|
||||
let home = util.home();
|
||||
|
||||
Reference in New Issue
Block a user