1
0
mirror of https://github.com/ONLYOFFICE/Docker-Docs.git synced 2025-04-18 15:04:02 +03:00

fix Bug 65188 - Upgrade to a current version of postgresql (#102)

This commit is contained in:
Evgeniy Antonyuk 2023-11-29 17:12:33 +07:00 committed by GitHub
parent acead282da
commit 2bc5997d72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 19 deletions

View File

@ -23,23 +23,9 @@ jobs:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=9.5"
name: "Test with PostgreSQL 9.5 and Rabbitmq"
variables: "POSTGRES_VERSION=12"
name: "Test with PostgreSQL 12 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=10"
name: "Test with PostgreSQL 10 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=11"
name: "Test with PostgreSQL 11 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
@ -47,6 +33,27 @@ jobs:
variables: "POSTGRES_VERSION=13"
name: "Test with PostgreSQL 13 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=14"
name: "Test with PostgreSQL 14 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=15"
name: "Test with PostgreSQL 15 and Rabbitmq"
- compose_file:
"postgres.yml
rabbitmq.yml
services.yml"
variables: "POSTGRES_VERSION=16"
name: "Test with PostgreSQL 16 and Rabbitmq"
- compose_file:
"postgres.yml
activemq.yml

View File

@ -1,4 +1,4 @@
ARG POSTGRES_VERSION="9.5"
ARG POSTGRES_VERSION="12"
ARG MYSQL_VERSION="latest"
ARG MARIADB_VERSION="latest"

View File

@ -5,10 +5,10 @@ services:
build:
context: ../.
args:
POSTGRES_VERSION: ${POSTGRES_VERSION:-9.5}
POSTGRES_VERSION: ${POSTGRES_VERSION:-12}
target: db
environment:
- POSTGRES_VERSION=${POSTGRES_VERSION:-9.5}
- POSTGRES_VERSION=${POSTGRES_VERSION:-12}
- POSTGRES_DB=${POSTGRES_DB:-onlyoffice}
- POSTGRES_USER=myuser
- POSTGRES_HOST_AUTH_METHOD=trust