mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
4ebfaf2ffd
* adds postgres password to docker-compose setup * fix confusion with pg password * add pw to other docker-compose files * add password to db url * setting postgis image version Co-authored-by: Marion Schleifer <marion@hasura.io> Co-authored-by: Shahidh K Muhammed <muhammedshahid.k@gmail.com>
24 lines
661 B
YAML
24 lines
661 B
YAML
version: '3.6'
|
|
services:
|
|
postgres:
|
|
image: mdillon/postgis:11
|
|
restart: always
|
|
volumes:
|
|
- db_data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_PASSWORD: postgrespassword
|
|
graphql-engine:
|
|
image: hasura/graphql-engine:v1.1.0
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
- "postgres"
|
|
restart: always
|
|
environment:
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
|
|
## uncomment next line to set the admin secret key
|
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
|
volumes:
|
|
db_data:
|