Skip to content

Instantly share code, notes, and snippets.

@mi11y
Created January 12, 2020 00:03
Show Gist options
  • Save mi11y/cbd4def4d70cf3dde450a86f0256467c to your computer and use it in GitHub Desktop.
Save mi11y/cbd4def4d70cf3dde450a86f0256467c to your computer and use it in GitHub Desktop.
Simple Docker compose for Hasura and Postgres
version: '3.3'
services:
postgres:
image: postgres
restart: always
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0
ports:
- "8080:8080"
depends_on:
- "postgres"
restart: always
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:@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
# uncomment next line to set an admin secret
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment