From e361537d326a7471cf3dd1649b76afffefce3b31 Mon Sep 17 00:00:00 2001 From: Alexey Golubev Date: Thu, 12 Mar 2020 14:07:20 +0300 Subject: [PATCH] Fix postgres test See details: https://github.com/docker-library/postgres/issues/681 --- tests/defaults.env | 1 + tests/postgres-old.yml | 1 + tests/postgres.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/defaults.env b/tests/defaults.env index cb8a2aa..070f769 100644 --- a/tests/defaults.env +++ b/tests/defaults.env @@ -32,6 +32,7 @@ ACTIVEMQ_GROUPS_owners=guest # Postgres Container POSTGRES_DB=onlyoffice POSTGRES_USER=onlyoffice +POSTGRES_HOST_AUTH_METHOD=trust # MySQL Container MYSQL_DATABASE=onlyoffice diff --git a/tests/postgres-old.yml b/tests/postgres-old.yml index 4385562..f795107 100644 --- a/tests/postgres-old.yml +++ b/tests/postgres-old.yml @@ -22,6 +22,7 @@ services: environment: - POSTGRES_DB - POSTGRES_USER + - POSTGRES_HOST_AUTH_METHOD restart: always expose: - '5432' diff --git a/tests/postgres.yml b/tests/postgres.yml index 0c5c39d..ed16e43 100644 --- a/tests/postgres.yml +++ b/tests/postgres.yml @@ -23,6 +23,7 @@ services: environment: - POSTGRES_DB - POSTGRES_USER + - POSTGRES_HOST_AUTH_METHOD restart: always expose: - '5432'