Updated to 1.1.2

This commit is contained in:
Dennis Schwerdel 2017-06-12 13:13:49 +02:00
parent 5ecde5c49b
commit c636d1dd87
5 changed files with 7 additions and 4 deletions

View file

@ -6,3 +6,6 @@
[0.1.2] [0.1.2]
* Updated description * Updated description
[0.1.3]
* Updated to version 1.1.2

View file

@ -4,7 +4,7 @@
"author": "Gitea developers", "author": "Gitea developers",
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"tagline": "A painless self-hosted Git Service", "tagline": "A painless self-hosted Git Service",
"version": "0.1.2", "version": "0.1.3",
"healthCheckPath": "/healthcheck", "healthCheckPath": "/healthcheck",
"httpPort": 3000, "httpPort": 3000,
"addons": { "addons": {

View file

@ -1,6 +1,6 @@
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. The initial development have been done on Gogs but we have forked it and named it Gitea. If you want to read more about the reasons why we have done that please read [this](https://blog.gitea.io/2016/12/welcome-to-gitea/) blog post. Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. The initial development have been done on Gogs but we have forked it and named it Gitea. If you want to read more about the reasons why we have done that please read [this](https://blog.gitea.io/2016/12/welcome-to-gitea/) blog post.
This app packages Gitea <upstream>1.1.1</upstream> This app packages Gitea <upstream>1.1.2</upstream>
### Purpose ### Purpose

View file

@ -1,6 +1,6 @@
FROM cloudron/base:0.10.0 FROM cloudron/base:0.10.0
ENV VERSION 1.1.1 ENV VERSION 1.1.2
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y openssh-server && \ apt-get install -y openssh-server && \

View file

@ -240,7 +240,7 @@ describe('Application life cycle test', function () {
it('can edit file', editFile); it('can edit file', editFile);
it('can restart app', function (done) { it('can restart app', function (done) {
execSync('cloudron restart --wait'); execSync('cloudron restart');
done(); done();
}); });