From 87aeeafd13808820fff3872a02a6aa162effdca1 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Tue, 19 Dec 2023 14:23:30 +0900 Subject: [PATCH] update --- hasura-rest/compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hasura-rest/compose.yml b/hasura-rest/compose.yml index 55a5d6a..61bbf14 100644 --- a/hasura-rest/compose.yml +++ b/hasura-rest/compose.yml @@ -1,12 +1,12 @@ services: db: - image: postgres:14-alpine + image: postgres:16-alpine environment: POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} volumes: - db_data:/var/lib/postgresql/data hasura: - image: hasura/graphql-engine:v2.10.1.cli-migrations-v3 + image: hasura/graphql-engine:v2.36.1-ce.cli-migrations-v3.ubi depends_on: [db] environment: HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres @@ -21,7 +21,7 @@ services: ports: - "8080:8080" postgrest: - image: postgrest/postgrest:v10.0.0 + image: postgrest/postgrest:v12.0.1 depends_on: [db] environment: PGRST_DB_URI: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres