mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
22 lines
578 B
YAML
22 lines
578 B
YAML
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-beta.2
|
|
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 admin secret
|
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
|
volumes:
|
|
db_data:
|