Skip to content

Commit

Permalink
Add docker-compose file for easy building
Browse files Browse the repository at this point in the history
  • Loading branch information
LinneyS committed Feb 22, 2019
1 parent bca201c commit a06e6a6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -77,6 +77,17 @@ Installation process is described [here](https://maven.apache.org/install.html)
The module can be checked in administrator tools at `share/page/console/admin-console/module-package` in Alfresco.


## Building from docker-compose

Other way to build ONLYOFFICE Alfresco module package is using docker-compose file.

Use this command from project directory:

```bash
docker-compose up
```


## How it works

The ONLYOFFICE integration follows the API documented [here](https://api.onlyoffice.com/editors/basic):
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,8 @@
version: '3'
services:
build:
image: maven:3.6
volumes:
- .:/onlyoffice-alfresco
working_dir: /onlyoffice-alfresco
command: mvn clean install

0 comments on commit a06e6a6

Please sign in to comment.