{"id":15136315,"url":"https://github.com/aleho/onlyoffice-ce-docker-license","last_synced_at":"2025-09-29T05:30:28.208Z","repository":{"id":48981356,"uuid":"251346815","full_name":"aleho/onlyoffice-ce-docker-license","owner":"aleho","description":"Onlyoffice with mobile editing enabled","archived":true,"fork":false,"pushed_at":"2021-07-03T06:38:21.000Z","size":108,"stargazers_count":209,"open_issues_count":2,"forks_count":112,"subscribers_count":26,"default_branch":"main","last_synced_at":"2024-09-27T06:20:39.162Z","etag":null,"topics":["docker-image","nextcloud","onlyoffice"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/alehoho/oo-ce-docker-license","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aleho.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-30T15:26:41.000Z","updated_at":"2024-08-26T06:18:58.000Z","dependencies_parsed_at":"2022-09-02T00:42:34.636Z","dependency_job_id":null,"html_url":"https://github.com/aleho/onlyoffice-ce-docker-license","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleho%2Fonlyoffice-ce-docker-license","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleho%2Fonlyoffice-ce-docker-license/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleho%2Fonlyoffice-ce-docker-license/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aleho%2Fonlyoffice-ce-docker-license/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aleho","download_url":"https://codeload.github.com/aleho/onlyoffice-ce-docker-license/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234594021,"owners_count":18857416,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-image","nextcloud","onlyoffice"],"created_at":"2024-09-26T06:20:34.925Z","updated_at":"2025-09-29T05:30:27.851Z","avatar_url":"https://github.com/aleho.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Patched ONLYOFFICE Docs (Community Edition)\n\n[![Docker Image CI](https://github.com/aleho/onlyoffice-ce-docker-license/actions/workflows/docker-image.yml/badge.svg)](https://github.com/aleho/onlyoffice-ce-docker-license/actions/workflows/docker-image.yml)\n\n## Notes\n\nPlease don't ask for setup support. I cannot support all your different setups. Sorry.\n\nPlease also don't ask OnlyOffice devs for support if something is broken with this image.\n\n**There will be bugs.**\n**Some functionaly will absolutely be broken.**\n**Don't expect this repository to provide every feature the paid version provides.**\n\n**Some mobile editing features are reverted by the patches to very old code (before they were removed).**\n**This code can not only break but also will not receive security updates.**\n\n## Features\n\nThis [Dockerfile](./Dockerfile) and patches compile a version of\nOnlyOffice Docs server with mobile editing enabled in the Nextcloud apps for an\nunlimited amount of concurrent users.\n\nThe patches provided in this repository also try to provide basic functionality from an old release.\n\nIt can be integrated into e.g. Nextcloud or ownCloud like the official images.\n\n## Background\n\nJust about two months after [Nextcloud released their partnership with Ascensio](https://nextcloud.com/blog/onlyoffice-and-nextcloud-partnering-up/)\nand featured a community version of OnlyOffice, the latter decided to remove\nsupport for mobile editing of documents. This affected the Nextcloud app,\nkilling a feature that was previously marketed by both companies.\n\nThe changes were executed without any prior notice and alienated quite a lot of\nhome users, who would now be forced to pay more than €1.000 to unlock that\npreviously free feature. Only after some outcries Ascensio deigned to release a\nstatement and a new, albeit \"limited\", offer of €90 for home servers. This\noffer has since expired and their licensing tier suggests current licenses are\nvalid for one year, starting at about €140.\n\nIn my opinion these deceptive practices of advertising a feature only to take\nit away are unacceptable for a company presenting itself and their products as\nopen source.\n\n\n## Usage\n\nPlease refer the the official docs on how to integrate OnlyOffice into your\nsetup.\n\n### Podman CLI\n\n```sh\npodman run \\\n    --name=onlyoffice \\\n    --detach \\\n    --publish=80:80 \\\n    docker.io/alehoho/oo-ce-docker-license\n```\n\n### Docker CLI\n\n```sh\ndocker run \\\n    --name=onlyoffice \\\n    --detach \\\n    --publish=80:80 \\\n    alehoho/oo-ce-docker-license\n```\n\n### docker-compose.yml\n\n```yml\nservices:\n  onlyoffice:\n    container_name: onlyoffice\n    image: alehoho/oo-ce-docker-license\n    ports:\n      - \"80:80\"\n```\n\n### Verify\n\nTo verify that the container is running successfully open\n`[server-url]/healthcheck` (has to return `true`) and for the version number open\n`[server-url]/index.html` and check the output of that page or\n`[server-url]/web-apps/apps/api/documents/api.js` and check the header comment.\n\n\n## Build\n\n### Buildah CLI\n\n```sh\nbuildah build-using-dockerfile \\\n    --tag=onlyoffice-patched \\\n    https://github.com/aleho/onlyoffice-ce-docker-license.git\n```\n\n### Docker CLI\n\n```sh\ndocker build \\\n    --tag=onlyoffice-patched \\\n    https://github.com/aleho/onlyoffice-ce-docker-license.git\n```\n\n\n### docker-compose.yml\n\n```yml\nservices:\n  onlyoffice:\n    container_name: onlyoffice\n    image: onlyoffice-patched\n    build:\n      context: https://github.com/aleho/onlyoffice-ce-docker-license.git\n    …\n```\n\n\n## Thanks\n\nThis repo was heavily inspired by the works of\n[Zegorax/OnlyOffice-Unlimited](https://github.com/Zegorax/OnlyOffice-Unlimited).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleho%2Fonlyoffice-ce-docker-license","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faleho%2Fonlyoffice-ce-docker-license","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faleho%2Fonlyoffice-ce-docker-license/lists"}