mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
31 lines
845 B
YAML
31 lines
845 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
|
|
graphql-engine:
|
|
image: hasura/graphql-engine:v2.1.0
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://hasura:hasura@postgres:5432/hasura
|
|
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://hasura:hasura@postgres:5432/hasura
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true"
|
|
HASURA_GRAPHQL_DEV_MODE: "false"
|
|
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
|
|
HASURA_GRAPHQL_ADMIN_SECRET: secret
|
|
depends_on:
|
|
- postgres
|
|
restart: unless-stopped
|
|
|
|
postgres:
|
|
image: postgres:14-alpine
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: hasura
|
|
POSTGRES_PASSWORD: hasura
|
|
POSTGRES_DB: hasura
|
|
restart: unless-stopped
|