1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-13 16:29:13 +00:00

Compare commits

...

8 Commits

Author SHA1 Message Date
Dennis Schwerdel
3b2df1b8a1 Updated to 2017-06-13T19-01-01Z 2017-06-14 22:46:14 +02:00
Dennis Schwerdel
e4e84d7a26 Updated tests 2017-06-14 22:45:46 +02:00
Dennis Schwerdel
3aa0241db8 Minor changes to tests & description 2017-06-02 19:50:25 +02:00
Dennis Schwerdel
4dc396041e Updated to 2017-05-05T01-14-51Z 2017-05-05 08:59:34 +02:00
Dennis Schwerdel
027524dbd3 Updated to 2017-04-29T00-40-27Z 2017-05-01 13:11:43 +02:00
Dennis Schwerdel
4379518d6c Updated to 2017-04-25T01-27-49Z 2017-04-25 08:45:48 +02:00
Dennis Schwerdel
89b872c1c8 Updated to 2017-03-16T21-50-32Z 2017-03-17 09:17:23 +01:00
Dennis Schwerdel
d82a5dfef3 Changed cloudron cli url 2017-02-18 12:59:48 +01:00
6 changed files with 24 additions and 10 deletions

View File

@@ -13,3 +13,18 @@
[0.2.2]
* New base image 0.10.0
[0.2.3]
* Updated to 2017-03-16T21-50-32Z
[0.2.4]
* Updated to 2017-04-25T01-27-49Z
[0.2.5]
* Updated to 2017-04-29T00-40-27Z
[0.2.6]
* Updated to 2017-05-05T01-14-51Z
[0.2.7]
* Updated to 2017-06-13T19-01-01Z

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Distributed object storage",
"version": "0.2.2",
"version": "0.2.7",
"healthCheckPath": "/minio/login",
"httpPort": 8000,
"addons": {

View File

@@ -1,4 +1,4 @@
This app packages Minio 2017-01-25T03-14-52Z.
This app packages Minio <upstream>2017-06-13T19-01-01Z</upstream>.
Minio is a distributed object storage server built for cloud applications and devops.

View File

@@ -3,10 +3,10 @@ MAINTAINER Minio Developers <support@cloudron.io>
EXPOSE 8000
ENV VERSION 2017-02-16T01-47-30Z
ENV VERSION 2017-06-13T19-01-01Z
RUN mkdir -p /app/code \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.${VERSION} -O /app/code/minio \
&& wget https://dl.minio.io/server/minio/release/linux-amd64/minio.RELEASE.${VERSION} -O /app/code/minio \
&& chmod +x /app/code/minio
WORKDIR /app/code

View File

@@ -6,7 +6,7 @@ This repository contains the Cloudron app package source for [Minio](http://www.
[![Install](https://cloudron.io/img/button.svg)](https://cloudron.io/button.html?app=io.minio.cloudronapp)
or using the [Cloudron command line tooling](https://cloudron.io/references/cli.html)
or using the [Cloudron command line tooling](https://git.cloudron.io/cloudron/cloudron-cli/)
```
cloudron install --appstore-id io.minio.cloudronapp
@@ -14,7 +14,7 @@ cloudron install --appstore-id io.minio.cloudronapp
## Building
The app package can be built using the [Cloudron command line tooling](https://cloudron.io/references/cli.html).
The app package can be built using the [Cloudron command line tooling](https://git.cloudron.io/cloudron/cloudron-cli/).
```
cd minio-app
@@ -31,7 +31,6 @@ The e2e tests are located in the `test/` folder and require [nodejs](http://node
cd minio-app/test
npm install
export PATH=$PATH:node_modules/.bin
mocha --bail test.js
PATH=$PATH:node_modules/.bin mocha --bail test.js
```

View File

@@ -41,7 +41,7 @@ describe('Application life cycle test', function () {
done();
});
var LOCATION = 'minio-test';
var LOCATION = 'test';
var TEST_TIMEOUT = 10000;
var app;
@@ -159,7 +159,7 @@ describe('Application life cycle test', function () {
it('move to different location', function () {
browser.manage().deleteAllCookies();
execSync('cloudron configure --location ' + LOCATION + '2', { cwd: path.resolve(__dirname, '..'), stdio: 'inherit' });
execSync('cloudron configure --wait --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');