graphql-engine/install-manifests/docker-compose-postgis/docker-compose.yaml
2019-01-29 15:45:32 +05:30

22 lines
583 B
YAML

version: '3.6'
services:
postgres:
image: mdillon/postgis
restart: always
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha37
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
## uncomment next line to set an access key
# HASURA_GRAPHQL_ACCESS_KEY: mysecretaccesskey
volumes:
db_data: