Skip to content

Instantly share code, notes, and snippets.

@karthikvt26
Created August 17, 2018 11:51
Show Gist options
  • Save karthikvt26/fd8204950a7f4e343ab71625f7cfaa58 to your computer and use it in GitHub Desktop.
Save karthikvt26/fd8204950a7f4e343ab71625f7cfaa58 to your computer and use it in GitHub Desktop.
version: '3.6'
services:
postgres:
image: postgres
restart: always
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha13
ports:
- "8080:8080"
depends_on:
- "postgres"
restart: always
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:@postgres:5432/postgres
command:
- graphql-engine
- serve
- --enable-console
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment