mirror of https://github.com/docker/docs.git
version bump
This commit is contained in:
parent
34f6b7169d
commit
c75bc2188e
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue