diff --git a/packages/nocodb/docker-compose.yml b/packages/nocodb/docker-compose.yml index ba2ab7b358..0922422094 100644 --- a/packages/nocodb/docker-compose.yml +++ b/packages/nocodb/docker-compose.yml @@ -337,13 +337,13 @@ services: xc-test-pg: image: node:12.22.1-slim depends_on: - pg96: + pg147: condition: service_healthy volumes: - ./:/home/app environment: NODE_ENV: test - DATABASE_URL: postgres://postgres:password@pg96:5432/postgres + DATABASE_URL: postgres://postgres:password@pg147:5432/postgres command: - /bin/bash - -c @@ -405,13 +405,13 @@ services: xc-test-gql-pg: image: node:12.22.1-slim depends_on: - pg96: + pg147: condition: service_healthy volumes: - ./:/home/app environment: NODE_ENV: test - DATABASE_URL: postgres://postgres:password@pg96:5432/postgres + DATABASE_URL: postgres://postgres:password@pg147:5432/postgres command: - /bin/bash - -c diff --git a/tests/playwright/scripts/docker-compose-playwright-pg.yml b/tests/playwright/scripts/docker-compose-playwright-pg.yml index 4998de8d00..046efbb48a 100644 --- a/tests/playwright/scripts/docker-compose-playwright-pg.yml +++ b/tests/playwright/scripts/docker-compose-playwright-pg.yml @@ -1,8 +1,8 @@ version: "2.1" services: - pg96: - image: postgres:15 + pg147: + image: postgres:14.7 restart: always environment: POSTGRES_PASSWORD: password