2018-09-14 14:49:23 +03:00
|
|
|
version: '3.6'
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: mdillon/postgis
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- db_data:/var/lib/postgresql/data
|
|
|
|
graphql-engine:
|
2020-02-19 16:51:40 +03:00
|
|
|
image: hasura/graphql-engine:v1.1.0
|
2018-09-14 14:49:23 +03:00
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
depends_on:
|
|
|
|
- "postgres"
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:@postgres:5432/postgres
|
2018-11-23 12:17:31 +03:00
|
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
|
2019-02-14 12:37:47 +03:00
|
|
|
## uncomment next line to set the admin secret key
|
|
|
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
2018-09-14 14:49:23 +03:00
|
|
|
volumes:
|
|
|
|
db_data:
|