onlyoffice-ce-docker-license/README.md

94 lines
2 KiB
Markdown
Raw Normal View History

2020-03-30 15:44:55 +00:00
# OnlyOffice Community server with license
2020-08-29 16:00:32 +00:00
2020-03-30 15:44:55 +00:00
## Usage
2020-09-26 20:21:25 +00:00
### Podman CLI
```sh
podman run \
--name=onlyoffice \
--detach \
--publish=80:80 \
docker.io/alehoho/oo-ce-docker-license
```
### Docker CLI
2020-04-19 09:10:27 +00:00
2020-08-29 16:00:32 +00:00
```sh
docker run \
--name=onlyoffice \
--detach \
2020-09-15 18:42:54 +00:00
--publish=80:80 \
2020-08-29 16:00:32 +00: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 20:21:25 +00:00
### Buildah CLI
2020-08-29 16:00:32 +00:00
2020-03-30 15:44:55 +00:00
```sh
2020-09-26 20:21:25 +00:00
buildah build-using-dockerfile \
2020-03-30 15:44:55 +00:00
--tag=onlyoffice-patched \
https://github.com/aleho/onlyoffice-ce-docker-license.git
```
2020-09-26 20:21:25 +00:00
### Docker CLI
2020-03-30 15:44:55 +00:00
```sh
2020-09-26 20:21:25 +00:00
docker build \
--tag=onlyoffice-patched \
https://github.com/aleho/onlyoffice-ce-docker-license.git
2020-03-30 15:44:55 +00:00
```
2020-09-26 20:21:25 +00:00
2020-04-19 09:10:27 +00: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 16:00:32 +00:00
2020-04-19 09:10:27 +00:00
```
2020-07-12 11:30:48 +00:00
### Verify
2020-08-22 19:48:06 +00: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 11:30:48 +00:00
`[server-url]/web-apps/apps/api/documents/api.js` and check the header comment.
2020-03-30 15:44:55 +00: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 09:52:17 +00:00
advertising itself and their product as open source.
2020-03-30 15:44:55 +00:00
## Thanks
2020-04-17 21:03:53 +00:00
This repo was heavily inspired by the works of
2020-03-30 15:44:55 +00:00
[Zegorax/OnlyOffice-Unlimited](https://github.com/Zegorax/OnlyOffice-Unlimited).