diff --git a/CHANGELOG b/CHANGELOG index f1ccd15..c3f375b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,3 +3,6 @@ [0.1.1] * Added screenshots + +[0.2.0] +* Updated to 2017-01-25T03-14-52Z diff --git a/CloudronManifest.json b/CloudronManifest.json index 5e95410..5cb3965 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -4,8 +4,8 @@ "author": "Minio Developers", "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", - "tagline": "Minio is a distributed object storage server built for cloud applications and devops.", - "version": "0.1.1", + "tagline": "Distributed object storage", + "version": "0.2.0", "healthCheckPath": "/minio/login", "httpPort": 8000, "addons": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 2044ebe..8e8abdb 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Minio 2016-12-13T17-19-42Z. +This app packages Minio 2017-01-25T03-14-52Z. Minio is a distributed object storage server built for cloud applications and devops. diff --git a/Dockerfile b/Dockerfile index 5572e19..d4241ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,10 @@ MAINTAINER Minio Developers EXPOSE 8000 +ENV VERSION 2017-01-25T03-14-52Z + RUN mkdir -p /app/code \ - && wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2016-12-13T17-19-42Z -O /app/code/minio \ + && wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.${VERSION} -O /app/code/minio \ && chmod +x /app/code/minio WORKDIR /app/code diff --git a/test/package.json b/test/package.json index 6e20b8a..733c0ca 100644 --- a/test/package.json +++ b/test/package.json @@ -16,6 +16,7 @@ "rimraf": "^2.5.3", "selenium-server-standalone-jar": "^2.53.1", "selenium-webdriver": "^2.53.3", - "superagent": "^1.4.0" + "superagent": "^1.4.0", + "chromedriver": "^2.27.0" } } diff --git a/test/test.js b/test/test.js index f714774..7f2ec72 100644 --- a/test/test.js +++ b/test/test.js @@ -142,7 +142,7 @@ describe('Application life cycle test', function () { it('move to different location', function () { browser.manage().deleteAllCookies(); - execSync('cloudron install --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); + execSync('cloudron configure --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' }); var inspect = JSON.parse(execSync('cloudron inspect')); app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0]; expect(app).to.be.an('object');