プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

update

Kohei Watanabe (Aug 20, 2022, 6:17 PM +0900) 40397ade 9aec2d31

+5 -6
+1 -1
hasura-rest/.gitignore
··· 1 - /.env 1 + .env
+4 -5
hasura-rest/docker-compose.yml hasura-rest/compose.yml
··· 1 - version: "3" 2 1 services: 3 2 db: 4 - image: postgres:13.4 3 + image: postgres:14-alpine 5 4 environment: 6 5 POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} 7 6 volumes: 8 7 - db_data:/var/lib/postgresql/data 9 8 hasura: 10 - image: hasura/graphql-engine:v2.0.9.cli-migrations-v3 9 + image: hasura/graphql-engine:v2.10.1.cli-migrations-v3 11 10 depends_on: [db] 12 11 environment: 13 12 HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres ··· 17 16 HASURA_GRAPHQL_ADMIN_SECRET: ${HASURA_GRAPHQL_ADMIN_SECRET} 18 17 HASURA_GRAPHQL_JWT_SECRET: ${HASURA_GRAPHQL_JWT_SECRET} 19 18 volumes: 20 - - ./migrations:/hasura-migrations 21 19 - ./metadata:/hasura-metadata 20 + - ./migrations:/hasura-migrations 22 21 ports: 23 22 - "8080:8080" 24 23 postgrest: 25 - image: postgrest/postgrest:v8.0.0 24 + image: postgrest/postgrest:v10.0.0 26 25 depends_on: [db] 27 26 environment: 28 27 PGRST_DB_URI: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres