4 Commits

Author SHA1 Message Date
Alexander Hofbauer
b0858e052f 5.6.4.20 2020-09-15 20:42:54 +02:00
Alexander Hofbauer
21a3f620a5 Document dockerhub
Closes #2
2020-08-30 16:10:07 +02:00
Alexander Hofbauer
2b876e7729 5.6.3.2 2020-08-22 21:48:24 +02:00
Alexander Hofbauer
4dbf466ea4 Document healthcheck 2020-08-22 21:48:06 +02:00
3 changed files with 34 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
ARG oo_version=5.6.2.2
ARG oo_version=5.6.4.20
FROM onlyoffice/documentserver:$oo_version
ARG oo_version=5.6.2.2
ARG oo_version=5.6.4.20
RUN sed -is \

View File

@@ -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,11 +52,13 @@ services:
image: onlyoffice-patched
build:
context: https://github.com/aleho/onlyoffice-ce-docker-license.git
```
### Verify
To verify that the container was built successfully simply call
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.

View File

@@ -19,9 +19,9 @@ index 694a13a..eb85e04 100644
-const buildVersion = '4.1.2';
-const buildNumber = 37;
+const buildVersion = '5.6.2';
+const buildNumber = 2
+exports.buildDate = '2020-08-07T11:23:00.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;