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",
|
"name": "Kitematic",
|
||||||
"version": "0.5.23",
|
"version": "0.5.24",
|
||||||
"author": "Kitematic",
|
"author": "Kitematic",
|
||||||
"description": "Simple Docker Container management for Mac OS X.",
|
"description": "Simple Docker Container management for Mac OS X.",
|
||||||
"homepage": "https://kitematic.com/",
|
"homepage": "https://kitematic.com/",
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
"<rootDir>/node_modules/source-map-support"
|
"<rootDir>/node_modules/source-map-support"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"docker-version": "1.6.0",
|
"docker-version": "1.6.1",
|
||||||
"docker-machine-version": "0.2.0",
|
"docker-machine-version": "0.2.0",
|
||||||
"electron-version": "0.24.0",
|
"electron-version": "0.24.0",
|
||||||
"virtualbox-version": "4.3.26",
|
"virtualbox-version": "4.3.26",
|
||||||
|
|
|
@ -71,8 +71,6 @@ var Containers = React.createClass({
|
||||||
this.context.router.transitionTo('containerHome', {name: name});
|
this.context.router.transitionTo('containerHome', {name: name});
|
||||||
} else if (status === 'pending' && ContainerStore.pending()) {
|
} else if (status === 'pending' && ContainerStore.pending()) {
|
||||||
this.context.router.transitionTo('pull');
|
this.context.router.transitionTo('pull');
|
||||||
} else if (status === 'destroy') {
|
|
||||||
this.onDestroy();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleScroll: function (e) {
|
handleScroll: function (e) {
|
||||||
|
|
|
@ -63,7 +63,10 @@ var _steps = [{
|
||||||
run: Promise.coroutine(function* (progressCallback) {
|
run: Promise.coroutine(function* (progressCallback) {
|
||||||
setupUtil.simulateProgress(this.seconds, progressCallback);
|
setupUtil.simulateProgress(this.seconds, progressCallback);
|
||||||
var exists = yield machine.exists();
|
var exists = yield machine.exists();
|
||||||
if (!exists) {
|
if (!exists || (yield machine.state()) === 'Error') {
|
||||||
|
if ((yield machine.state()) === 'Error') {
|
||||||
|
yield machine.rm();
|
||||||
|
}
|
||||||
yield machine.create();
|
yield machine.create();
|
||||||
if(util.isWindows()) {
|
if(util.isWindows()) {
|
||||||
let home = util.home();
|
let home = util.home();
|
||||||
|
|
Loading…
Reference in New Issue