mirror of
https://github.com/aleho/onlyoffice-ce-docker-license.git
synced 2025-12-31 13:14:05 +01:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0858e052f | ||
|
|
21a3f620a5 | ||
|
|
2b876e7729 | ||
|
|
4dbf466ea4 | ||
|
|
42d32196fa | ||
|
|
6f4181f51a | ||
|
|
4a19854542 |
@@ -1,6 +1,6 @@
|
||||
ARG oo_version=5.5.3.39
|
||||
ARG oo_version=5.6.4.20
|
||||
FROM onlyoffice/documentserver:$oo_version
|
||||
ARG oo_version=5.5.3.39
|
||||
ARG oo_version=5.6.4.20
|
||||
|
||||
|
||||
RUN sed -is \
|
||||
|
||||
36
README.md
36
README.md
@@ -1,9 +1,34 @@
|
||||
# OnlyOffice Community server with license
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
### CLI
|
||||
|
||||
```sh
|
||||
docker run \
|
||||
--name=onlyoffice \
|
||||
--detach \
|
||||
--publish=80:80 \
|
||||
alehoho/oo-ce-docker-license
|
||||
```
|
||||
|
||||
### docker-compose.yml
|
||||
|
||||
```yml
|
||||
services:
|
||||
onlyoffice:
|
||||
container_name: onlyoffice
|
||||
image: alehoho/oo-ce-docker-license
|
||||
ports:
|
||||
- "80"
|
||||
```
|
||||
|
||||
|
||||
## Build
|
||||
|
||||
### CLI
|
||||
|
||||
```sh
|
||||
docker build \
|
||||
--tag=onlyoffice-patched \
|
||||
@@ -14,6 +39,7 @@ docker build \
|
||||
docker run \
|
||||
--name=onlyoffice \
|
||||
--detach \
|
||||
…
|
||||
onlyoffice-patched
|
||||
```
|
||||
|
||||
@@ -26,8 +52,16 @@ services:
|
||||
image: onlyoffice-patched
|
||||
build:
|
||||
context: https://github.com/aleho/onlyoffice-ce-docker-license.git
|
||||
…
|
||||
```
|
||||
|
||||
### Verify
|
||||
|
||||
To verify that the container is running successfully open
|
||||
`[server-url]/healthcheck` (has to return `true`) and for the version number open
|
||||
`[server-url]/web-apps/apps/api/documents/api.js` and check the header comment.
|
||||
|
||||
|
||||
## Background
|
||||
Recently, just about a month after Nextcloud announced their partnership with
|
||||
Ascensio and featuring a community version of OnlyOffice, the latter decided
|
||||
@@ -39,7 +73,7 @@ feature. Only after some outcries Ascensio deigned to release a statement and
|
||||
a new, albeit "limited", offer of €90 for home servers.
|
||||
|
||||
In my opinion these deceptive practices are unacceptable for a company
|
||||
advertising itself and their product as open source .
|
||||
advertising itself and their product as open source.
|
||||
|
||||
|
||||
## Thanks
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
From 77edf2dd0cc894aefca49927c292defbccf7365b Mon Sep 17 00:00:00 2001
|
||||
From 49041ccf02617c5a9b92693b3bf65870e6b79006 Mon Sep 17 00:00:00 2001
|
||||
From: Alexander Hofbauer <alex@derhofbauer.at>
|
||||
Date: Sun, 19 Apr 2020 12:52:29 +0200
|
||||
Date: Mon, 3 Aug 2020 11:44:57 +0200
|
||||
Subject: [PATCH] Enable rebuild with fake license
|
||||
|
||||
---
|
||||
@@ -10,18 +10,18 @@ Subject: [PATCH] Enable rebuild with fake license
|
||||
3 files changed, 18 insertions(+), 45 deletions(-)
|
||||
|
||||
diff --git a/Common/sources/commondefines.js b/Common/sources/commondefines.js
|
||||
index 4518ac8..ff00ffe 100644
|
||||
index 694a13a..eb85e04 100644
|
||||
--- a/Common/sources/commondefines.js
|
||||
+++ b/Common/sources/commondefines.js
|
||||
@@ -970,8 +970,9 @@ const c_oAscQueueType = {
|
||||
activemq: 'activemq'
|
||||
@@ -975,8 +975,9 @@ const c_oAscUnlockRes = {
|
||||
Empty: 2
|
||||
};
|
||||
|
||||
-const buildVersion = '4.1.2';
|
||||
-const buildNumber = 37;
|
||||
+const buildVersion = '5.5.3';
|
||||
+const buildNumber = 76;
|
||||
+exports.buildDate = '2020-03-36T14:02:15.000Z';
|
||||
+const buildVersion = '5.6.4';
|
||||
+const buildNumber = 20
|
||||
+exports.buildDate = '2020-09-08T10:46:00.000+02:00'
|
||||
|
||||
exports.TaskQueueData = TaskQueueData;
|
||||
exports.CMailMergeSendData = CMailMergeSendData;
|
||||
@@ -124,5 +124,5 @@ index 40bf93e..7109dbd 100644
|
||||
build-date: $(GRUNT_FILES)
|
||||
sed "s|\(const buildVersion = \).*|\1'${PRODUCT_VERSION}';|" -i $(COMMON_DEFINES_JS)
|
||||
--
|
||||
2.26.1
|
||||
2.28.0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user