onlyoffice-document-server/README.md

94 lines
2 KiB
Markdown
Raw Permalink Normal View History

2020-03-30 17:44:55 +02:00
# OnlyOffice Community server with license
2020-08-29 18:00:32 +02:00
2020-03-30 17:44:55 +02:00
## Usage
2020-09-26 22:21:25 +02:00
### Podman CLI
```sh
podman run \
--name=onlyoffice \
--detach \
--publish=80:80 \
docker.io/alehoho/oo-ce-docker-license
```
### Docker CLI
2020-04-19 11:10:27 +02:00
2020-08-29 18:00:32 +02:00
```sh
docker run \
--name=onlyoffice \
--detach \
2020-09-15 20:42:54 +02:00
--publish=80:80 \
2020-08-29 18:00:32 +02:00
alehoho/oo-ce-docker-license
```
### docker-compose.yml
```yml
services:
onlyoffice:
container_name: onlyoffice
image: alehoho/oo-ce-docker-license
ports:
- "80"
```
## Build
2020-09-26 22:21:25 +02:00
### Buildah CLI
2020-08-29 18:00:32 +02:00
2020-03-30 17:44:55 +02:00
```sh
2020-09-26 22:21:25 +02:00
buildah build-using-dockerfile \
2020-03-30 17:44:55 +02:00
--tag=onlyoffice-patched \
https://github.com/aleho/onlyoffice-ce-docker-license.git
```
2020-09-26 22:21:25 +02:00
### Docker CLI
2020-03-30 17:44:55 +02:00
```sh
2020-09-26 22:21:25 +02:00
docker build \
--tag=onlyoffice-patched \
https://github.com/aleho/onlyoffice-ce-docker-license.git
2020-03-30 17:44:55 +02:00
```
2020-09-26 22:21:25 +02:00
2020-04-19 11:10:27 +02:00
### docker-compose.yml
```yml
services:
onlyoffice:
container_name: onlyoffice
image: onlyoffice-patched
build:
context: https://github.com/aleho/onlyoffice-ce-docker-license.git
2020-08-29 18:00:32 +02:00
2020-04-19 11:10:27 +02:00
```
2020-07-12 13:30:48 +02:00
### Verify
2020-08-22 21:48:06 +02:00
To verify that the container is running successfully open
`[server-url]/healthcheck` (has to return `true`) and for the version number open
2020-07-12 13:30:48 +02:00
`[server-url]/web-apps/apps/api/documents/api.js` and check the header comment.
2020-03-30 17:44:55 +02:00
## Background
Recently, just about a month after Nextcloud announced their partnership with
Ascensio and featuring a community version of OnlyOffice, the latter decided
to remove support for mobile editing of documents via the Nextcloud app.
This happened without any prior notice and alienated quite a lot of home users,
who would now be forced to pay more than €1.000 to unlock that previously free
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
2020-08-03 11:52:17 +02:00
advertising itself and their product as open source.
2020-03-30 17:44:55 +02:00
## Thanks
2020-04-17 23:03:53 +02:00
This repo was heavily inspired by the works of
2020-03-30 17:44:55 +02:00
[Zegorax/OnlyOffice-Unlimited](https://github.com/Zegorax/OnlyOffice-Unlimited).