Merge branch release/v6.0.0 into master

This commit is contained in:
papacarlo 2020-09-30 15:15:26 +00:00
commit f24908eb7a
11 changed files with 131 additions and 15 deletions

@ -10,6 +10,7 @@ env:
- config: standalone.yml - config: standalone.yml
PRODUCT_NAME: documentserver-ie PRODUCT_NAME: documentserver-ie
# certificates (default tls if onlyoffice not exists) # certificates (default tls if onlyoffice not exists)
- config: certs.yml - config: certs.yml
ssl: true ssl: true
@ -30,10 +31,27 @@ env:
SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt SSL_CERTIFICATE_PATH: /var/www/onlyoffice/Data/certs/mycert.crt
SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key SSL_KEY_PATH: /var/www/onlyoffice/Data/certs/mycert.key
# postgresql
# postgresql 12
- config: postgres.yml
POSTGRES_VERSION: 12
# postgresql 11
- config: postgres.yml
POSTGRES_VERSION: 11
# postgresql 10
- config: postgres.yml
POSTGRES_VERSION: 10
# postgresql 9
- config: postgres.yml
POSTGRES_VERSION: 9
# postgresql 9.5
- config: postgres.yml - config: postgres.yml
# custom values # postgresql custom values
- config: postgres.yml - config: postgres.yml
DB_NAME: mydb DB_NAME: mydb
DB_USER: myuser DB_USER: myuser
@ -41,31 +59,67 @@ env:
POSTGRES_DB: mydb POSTGRES_DB: mydb
POSTGRES_USER: myuser POSTGRES_USER: myuser
# deprecated variables # postgresql deprecated variables
- config: postgres-old.yml - config: postgres-old.yml
# mysql
# mysql 8
- config: mysql.yml
MYSQL_VERSION: 8
# mysql 5
- config: mysql.yml
MYSQL_VERSION: 5
# mysql 5.7
- config: mysql.yml - config: mysql.yml
# mariadb
# mariadb 10
- config: mariadb.yml
MARIADB_VERSION: 10
# mariadb 10.5
- config: mariadb.yml - config: mariadb.yml
# activemq
- config: activemq.yml
ACTIVEMQ_VERSION: latest
# activemq 5.14.3
- config: activemq.yml - config: activemq.yml
# rabbitmq
# rabbitmq latest
- config: rabbitmq.yml - config: rabbitmq.yml
# rabbitmq 3
- config: rabbitmq.yml
RABBITMQ_VERSION: 3
# rabbitmq old variables # rabbitmq old variables
- config: rabbitmq-old.yml - config: rabbitmq-old.yml
# redis with community edition
# redis latest with community edition
- config: redis.yml - config: redis.yml
# redis with integraion edition # redis latest with integraion edition
- config: redis.yml - config: redis.yml
PRODUCT_NAME: documentserver-ie PRODUCT_NAME: documentserver-ie
# redis 6
- config: redis.yml
REDIS_VERSION: 6
# redis 5
- config: redis.yml
REDIS_VERSION: 5
# graphite
- config: graphite.yml
services: services:
- docker - docker

@ -181,6 +181,10 @@ Below is the complete list of parameters that can be set using environment varia
- **JWT_HEADER**: Defines the http header that will be used to send the JSON Web Token. Defaults to `Authorization`. - **JWT_HEADER**: Defines the http header that will be used to send the JSON Web Token. Defaults to `Authorization`.
- **JWT_IN_BODY**: Specifies the enabling the token validation in the request body to the ONLYOFFICE Document Server. Defaults to `false`. - **JWT_IN_BODY**: Specifies the enabling the token validation in the request body to the ONLYOFFICE Document Server. Defaults to `false`.
- **USE_UNAUTHORIZED_STORAGE**: Set to `true`if using selfsigned certificates for your storage server e.g. Nextcloud. Defaults to `false` - **USE_UNAUTHORIZED_STORAGE**: Set to `true`if using selfsigned certificates for your storage server e.g. Nextcloud. Defaults to `false`
- **METRICS_ENABLED**: Specifies the enabling StatsD for ONLYOFFICE Document Server. Defaults to `false`.
- **METRICS_HOST**: Defines StatsD listening host. Defaults to `localhost`.
- **METRICS_PORT**: Defines StatsD listening port. Defaults to `8125`.
- **METRICS_PREFIX**: Defines StatsD metrics prefix for backend services. Defaults to `ds.`.
## Installing ONLYOFFICE Document Server integrated with Community and Mail Servers ## Installing ONLYOFFICE Document Server integrated with Community and Mail Servers

@ -84,6 +84,11 @@ read_setting(){
deprecated_var AMQP_SERVER_URL AMQP_URI deprecated_var AMQP_SERVER_URL AMQP_URI
deprecated_var AMQP_SERVER_TYPE AMQP_TYPE deprecated_var AMQP_SERVER_TYPE AMQP_TYPE
METRICS_ENABLED="${METRICS_ENABLED:-false}"
METRICS_HOST="${METRICS_HOST:-localhost}"
METRICS_PORT="${METRICS_PORT:-8125}"
METRICS_PREFIX="${METRICS_PREFIX:-.ds}"
DB_HOST=${DB_HOST:-${POSTGRESQL_SERVER_HOST:-$(${JSON} services.CoAuthoring.sql.dbHost)}} DB_HOST=${DB_HOST:-${POSTGRESQL_SERVER_HOST:-$(${JSON} services.CoAuthoring.sql.dbHost)}}
case $DB_TYPE in case $DB_TYPE in
"postgres") "postgres")
@ -185,6 +190,15 @@ waiting_for_redis(){
waiting_for_datacontainer(){ waiting_for_datacontainer(){
waiting_for_connection ${ONLYOFFICE_DATA_CONTAINER_HOST} ${ONLYOFFICE_DATA_CONTAINER_PORT} waiting_for_connection ${ONLYOFFICE_DATA_CONTAINER_HOST} ${ONLYOFFICE_DATA_CONTAINER_PORT}
} }
update_statsd_settings(){
${JSON} -I -e "if(this.statsd===undefined)this.statsd={};"
${JSON} -I -e "this.statsd.useMetrics = '${METRICS_ENABLED}'"
${JSON} -I -e "this.statsd.host = '${METRICS_HOST}'"
${JSON} -I -e "this.statsd.port = '${METRICS_PORT}'"
${JSON} -I -e "this.statsd.prefix = '${METRICS_PREFIX}'"
}
update_db_settings(){ update_db_settings(){
${JSON} -I -e "this.services.CoAuthoring.sql.type = '${DB_TYPE}'" ${JSON} -I -e "this.services.CoAuthoring.sql.type = '${DB_TYPE}'"
${JSON} -I -e "this.services.CoAuthoring.sql.dbHost = '${DB_HOST}'" ${JSON} -I -e "this.services.CoAuthoring.sql.dbHost = '${DB_HOST}'"
@ -426,6 +440,10 @@ if [ ${ONLYOFFICE_DATA_CONTAINER_HOST} = "localhost" ]; then
read_setting read_setting
if [ $METRICS_ENABLED = "true" ]; then
update_statsd_settings
fi
update_welcome_page update_welcome_page
update_log_settings update_log_settings

@ -17,7 +17,7 @@ services:
onlyoffice-activemq: onlyoffice-activemq:
container_name: onlyoffice-activemq container_name: onlyoffice-activemq
image: webcenter/activemq:5.14.3 image: webcenter/activemq:${ACTIVEMQ_VERSION:-5.14.3}
environment: environment:
- ACTIVEMQ_USERS_guest=${ACTIVEMQ_USERS_guest:-guest} - ACTIVEMQ_USERS_guest=${ACTIVEMQ_USERS_guest:-guest}
- ACTIVEMQ_GROUPS_owners=${ACTIVEMQ_GROUPS_owners:-guest} - ACTIVEMQ_GROUPS_owners=${ACTIVEMQ_GROUPS_owners:-guest}

32
tests/graphite.yml Normal file

@ -0,0 +1,32 @@
version: '2.1'
services:
onlyoffice-documentserver:
container_name: onlyoffice-documentserver
build:
context: ../.
depends_on:
- onlyoffice-graphite
environment:
- METRICS_ENABLED=${METRICS_ENABLED:-true}
- METRICS_HOST=${METRICS_HOST:-localhost}
- METRICS_PORT=${METRICS_PORT:-8125}
- METRICS_PREFIX=${METRICS_PREFIX:-ds.}
stdin_open: true
restart: always
expose:
- '2003'
ports:
- '80:80'
volumes:
- ./graphite/statsd:/var/www/onlyoffice/documentserver/server/Metrics/config
onlyoffice-graphite:
container_name: onlyoffice-graphite
image: graphiteapp/graphite-statsd
environment:
- GRAPHITE_STATSD_HOST=${GRAPHITE_STATSD_HOST:-onlyoffice-documentserver}
- GRAPHITE_TIME_ZONE=${GRAPHITE_TIME_ZONE:-Etc/UTC}
ports:
- '8888:80'
stdin_open: true
restart: always

@ -0,0 +1,7 @@
{
"graphiteHost": "onlyoffice-graphite",
"graphitePort": 2003,
"port": 8125,
"flushInterval": 60000,
"backends": [ "./backends/graphite.js" ]
}

@ -20,7 +20,7 @@ services:
onlyoffice-mariadb: onlyoffice-mariadb:
container_name: onlyoffice-mariadb container_name: onlyoffice-mariadb
image: mariadb:10.5 image: mariadb:${MARIADB_VERSION:-10.5}
environment: environment:
- MYSQL_DATABASE=${MYSQL_DATABASE:-onlyoffice} - MYSQL_DATABASE=${MYSQL_DATABASE:-onlyoffice}
- MYSQL_USER=${MYSQL_USER:-onlyoffice} - MYSQL_USER=${MYSQL_USER:-onlyoffice}

@ -20,7 +20,8 @@ services:
onlyoffice-mysql: onlyoffice-mysql:
container_name: onlyoffice-mysql container_name: onlyoffice-mysql
image: mysql:5.7 image: mysql:${MYSQL_VERSION:-5.7}
command: --default-authentication-plugin=mysql_native_password
environment: environment:
- MYSQL_DATABASE=${MYSQL_DATABASE:-onlyoffice} - MYSQL_DATABASE=${MYSQL_DATABASE:-onlyoffice}
- MYSQL_USER=${MYSQL_USER:-onlyoffice} - MYSQL_USER=${MYSQL_USER:-onlyoffice}

@ -20,7 +20,7 @@ services:
onlyoffice-postgresql: onlyoffice-postgresql:
container_name: onlyoffice-postgresql container_name: onlyoffice-postgresql
image: postgres:9.5 image: postgres:${POSTGRES_VERSION:-9.5}
environment: environment:
- POSTGRES_DB=${POSTGRES_DB:-onlyoffice} - POSTGRES_DB=${POSTGRES_DB:-onlyoffice}
- POSTGRES_USER=${POSTGRES_USER:-onlyoffice} - POSTGRES_USER=${POSTGRES_USER:-onlyoffice}

@ -17,7 +17,7 @@ services:
onlyoffice-rabbitmq: onlyoffice-rabbitmq:
container_name: onlyoffice-rabbitmq container_name: onlyoffice-rabbitmq
image: rabbitmq image: rabbitmq:${RABBITMQ_VERSION:-latest}
restart: always restart: always
networks: networks:
- onlyoffice - onlyoffice

@ -19,7 +19,7 @@ services:
onlyoffice-redis: onlyoffice-redis:
container_name: onlyoffice-redis container_name: onlyoffice-redis
image: redis image: redis:${REDIS_VERSION:-latest}
restart: always restart: always
networks: networks:
- onlyoffice - onlyoffice