Add Travis test for deprecated variables
This commit is contained in:
parent
2f923012c3
commit
dcd4ab237f
|
|
@ -9,6 +9,8 @@ env:
|
|||
|
||||
- file: activemq.yml
|
||||
|
||||
- file: postgres-deprecated-vars.yml
|
||||
|
||||
services:
|
||||
- docker
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ services:
|
|||
- mysql_data:/var/lib/mysql
|
||||
expose:
|
||||
- '3306'
|
||||
- '33060'
|
||||
|
||||
volumes:
|
||||
mysql_data:
|
||||
|
|
|
|||
32
postgres-deprecated-vars.yml
Normal file
32
postgres-deprecated-vars.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
version: '2'
|
||||
services:
|
||||
onlyoffice-documentserver:
|
||||
container_name: onlyoffice-documentserver
|
||||
image: onlyoffice/4testing-documentserver-ie:latest
|
||||
depends_on:
|
||||
- onlyoffice-postgresql
|
||||
environment:
|
||||
- POSTGRESQL_SERVER_HOST=onlyoffice-postgresql
|
||||
- POSTGRESQL_SERVER_PORT=5432
|
||||
- POSTGRESQL_SERVER_DB_NAME=onlyoffice
|
||||
- POSTGRESQL_SERVER_USER=onlyoffice
|
||||
- POSTGRESQL_SERVER_PASS=onlyoffice
|
||||
stdin_open: true
|
||||
restart: always
|
||||
ports:
|
||||
- '80:80'
|
||||
|
||||
onlyoffice-postgresql:
|
||||
container_name: onlyoffice-postgresql
|
||||
image: postgres:9.5
|
||||
environment:
|
||||
- POSTGRES_DB=onlyoffice
|
||||
- POSTGRES_USER=onlyoffice
|
||||
restart: always
|
||||
expose:
|
||||
- '5432'
|
||||
volumes:
|
||||
- postgresql_data:/var/lib/postgresql
|
||||
|
||||
volumes:
|
||||
postgresql_data:
|
||||
Loading…
Reference in a new issue