Created
November 17, 2023 19:32
-
-
Save hipertracker/5bab9914179733dbae1159ca8ce03b15 to your computer and use it in GitHub Desktop.
hasura on docker dev (fragment)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hasura: | |
restart: always | |
image: hasura/graphql-engine:v2.35.1 | |
ports: | |
- "$HASURA_PORT:8080" | |
depends_on: | |
- postgres | |
environment: | |
HASURA_GRAPHQL_DATABASE_URL: $HASURA_GRAPHQL_DATABASE_URL | |
HASURA_GRAPHQL_ENABLE_CONSOLE: $HASURA_GRAPHQL_ENABLE_CONSOLE | |
HASURA_GRAPHQL_ADMIN_SECRET: $HASURA_GRAPHQL_ADMIN_SECRET | |
HASURA_GRAPHQL_DEV_MODE: "true" | |
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log | |
HASURA_GRAPHQL_JWT_SECRET: $HASURA_GRAPHQL_JWT_SECRET | |
HASURA_GRAPHQL_EE_LICENSE_KEY: $HASURA_GRAPHQL_EE_LICENSE_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment