2019-02-07 14:50:27 +03:00
|
|
|
version: '3.6'
|
|
|
|
services:
|
|
|
|
postgres:
|
2020-02-19 16:52:40 +03:00
|
|
|
image: postgres:12
|
2019-02-07 14:50:27 +03:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- db_data:/var/lib/postgresql/data
|
2020-02-19 16:52:40 +03:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: postgrespassword
|
2019-02-07 14:50:27 +03:00
|
|
|
pgadmin:
|
|
|
|
image: dpage/pgadmin4
|
|
|
|
restart: always
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
ports:
|
|
|
|
- 5050:80
|
|
|
|
## you can change pgAdmin default username/password with below environment variables
|
|
|
|
environment:
|
|
|
|
PGADMIN_DEFAULT_EMAIL: pgadmin@example.com
|
|
|
|
PGADMIN_DEFAULT_PASSWORD: admin
|
|
|
|
graphql-engine:
|
2020-06-08 18:03:47 +03:00
|
|
|
image: hasura/graphql-engine:v1.3.0-beta.1
|
2019-02-07 14:50:27 +03:00
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
depends_on:
|
|
|
|
- "postgres"
|
|
|
|
restart: always
|
|
|
|
environment:
|
2020-02-19 16:52:40 +03:00
|
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
2020-06-03 12:55:47 +03:00
|
|
|
## enable the console served by server
|
2019-02-07 14:50:27 +03:00
|
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
|
2020-06-03 12:55:47 +03:00
|
|
|
## enable debugging mode. It is recommended to disable this in production
|
|
|
|
HASURA_GRAPHQL_DEV_MODE: "true"
|
2019-02-14 12:37:47 +03:00
|
|
|
## uncomment next line to set an admin secret
|
|
|
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
2019-02-07 14:50:27 +03:00
|
|
|
volumes:
|
|
|
|
db_data:
|