From f64ecd321b5f2e09f59117cf7f4ce1f9e8acbafb Mon Sep 17 00:00:00 2001 From: Semen Bezrukov Date: Thu, 4 Jun 2020 15:22:11 +0300 Subject: [PATCH] Add test for Integration Edition --- .travis.yml | 4 ++++ tests/edition.yml | 15 +++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 tests/edition.yml diff --git a/.travis.yml b/.travis.yml index 94a1ff0..c9d3788 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,10 @@ env: SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key + # integration edition + - config: edition.yml + PRODUCT_NAME: documentserver-ie + # postgresql - config: postgres.yml diff --git a/tests/edition.yml b/tests/edition.yml new file mode 100644 index 0000000..dc4cd69 --- /dev/null +++ b/tests/edition.yml @@ -0,0 +1,15 @@ +version: '2.1' +services: + onlyoffice-documentserver: + container_name: onlyoffice-documentserver + build: + context: ../. + args: + - PRODUCT_NAME=${PRODUCT_NAME:-documentserver} + stdin_open: true + restart: always + ports: + - '80:80' + - '443:443' + volumes: + - ./data:/var/www/onlyoffice/Data