mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
24a117787b
GITHUB_PR_NUMBER: 8754 GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/8754 PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5367 Co-authored-by: arjunyel <11153289+arjunyel@users.noreply.github.com> GitOrigin-RevId: ed4eff00c5a35f115c390fc44ac50b16f95d7fb4
20 lines
623 B
YAML
20 lines
623 B
YAML
version: '3.6'
|
|
services:
|
|
postgres:
|
|
image: postgres:14
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: postgrespassword
|
|
graphql-engine:
|
|
container_name: graphql-engine
|
|
image: ${TEST_IMAGE_NAME}
|
|
platform: ${TEST_PLATFORM}
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
- "postgres"
|
|
restart: always
|
|
environment:
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
|
|
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log |