From 963b3842aaf3851f9a0c9cb01c8f6df1ee1b4933 Mon Sep 17 00:00:00 2001 From: ManUtopiK Date: Sat, 29 Oct 2022 20:46:08 +0200 Subject: [PATCH] fix: disable auto migrations --- composes/hasura/hasura.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composes/hasura/hasura.yml b/composes/hasura/hasura.yml index 43a91f1..979cb5c 100644 --- a/composes/hasura/hasura.yml +++ b/composes/hasura/hasura.yml @@ -1,7 +1,7 @@ services: hasura: container_name: $APP_NAME-hasura - image: hasura/graphql-engine:v2.13.0.cli-migrations-v3 + image: hasura/graphql-engine:v2.13.0 #.cli-migrations-v3 restart: always ports: - ${HASURA_PORT:-8080}:8080 @@ -9,9 +9,9 @@ services: depends_on: postgres: condition: service_healthy - volumes: - - ../../hasura/migrations:/hasura-migrations - - ../../hasura/metadata:/hasura-metadata + # volumes: + # - ../../hasura/migrations:/hasura-migrations + # - ../../hasura/metadata:/hasura-metadata environment: - HASURA_GRAPHQL_DATABASE_URL=postgres://${POSTGRES_NON_ROOT_USER:-$ADMIN_USER}:${POSTGRES_NON_ROOT_PASSWORD:-$POSTGRES_PASSWORD}@postgres:5432/${HASURA_DB:-postgres} ## enable the console served by server