Add support of MySQL DBMS ()

* Add support of MySQL database
This commit is contained in:
Semyon Bezrukov 2019-10-29 12:42:43 +03:00 committed by Alexey Golubev
parent b590340a10
commit 7d1606bc95
11 changed files with 310 additions and 37 deletions

33
tests/postgres.yml Normal file
View file

@ -0,0 +1,33 @@
version: '2'
services:
onlyoffice-documentserver:
container_name: onlyoffice-documentserver
image: onlyoffice/4testing-documentserver-ie:latest
depends_on:
- onlyoffice-postgresql
environment:
- DB_TYPE
- DB_HOST
- DB_PORT
- DB_NAME
- DB_USER
- DB_PWD
stdin_open: true
restart: always
ports:
- '80:80'
onlyoffice-postgresql:
container_name: onlyoffice-postgresql
image: postgres:9.5
environment:
- POSTGRES_DB
- POSTGRES_USER
restart: always
expose:
- '5432'
volumes:
- postgresql_data:/var/lib/postgresql
volumes:
postgresql_data: