Version 0.2.0, fixed tests
This commit is contained in:
parent
9cb5a0f08c
commit
d770b101b0
|
@ -3,3 +3,6 @@
|
||||||
|
|
||||||
[0.1.1]
|
[0.1.1]
|
||||||
* Added screenshots
|
* Added screenshots
|
||||||
|
|
||||||
|
[0.2.0]
|
||||||
|
* Updated to 2017-01-25T03-14-52Z
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
"author": "Minio Developers",
|
"author": "Minio Developers",
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Minio is a distributed object storage server built for cloud applications and devops.",
|
"tagline": "Distributed object storage",
|
||||||
"version": "0.1.1",
|
"version": "0.2.0",
|
||||||
"healthCheckPath": "/minio/login",
|
"healthCheckPath": "/minio/login",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
|
@ -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.
|
Minio is a distributed object storage server built for cloud applications and devops.
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,10 @@ MAINTAINER Minio Developers <support@cloudron.io>
|
||||||
|
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
|
ENV VERSION 2017-01-25T03-14-52Z
|
||||||
|
|
||||||
RUN mkdir -p /app/code \
|
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
|
&& chmod +x /app/code/minio
|
||||||
|
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
"rimraf": "^2.5.3",
|
"rimraf": "^2.5.3",
|
||||||
"selenium-server-standalone-jar": "^2.53.1",
|
"selenium-server-standalone-jar": "^2.53.1",
|
||||||
"selenium-webdriver": "^2.53.3",
|
"selenium-webdriver": "^2.53.3",
|
||||||
"superagent": "^1.4.0"
|
"superagent": "^1.4.0",
|
||||||
|
"chromedriver": "^2.27.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,7 +142,7 @@ describe('Application life cycle test', function () {
|
||||||
|
|
||||||
it('move to different location', function () {
|
it('move to different location', function () {
|
||||||
browser.manage().deleteAllCookies();
|
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'));
|
var inspect = JSON.parse(execSync('cloudron inspect'));
|
||||||
app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
|
app = inspect.apps.filter(function (a) { return a.location === LOCATION + '2'; })[0];
|
||||||
expect(app).to.be.an('object');
|
expect(app).to.be.an('object');
|
||||||
|
|
Loading…
Reference in New Issue