graphql-engine/install-manifests/docker-compose-postgis/docker-compose.yaml
Noon van der Silk 4ebfaf2ffd
adds postgres password to docker-compose setup (fix #3894) (#3895)
* 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>
2020-02-19 19:22:40 +05:30

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: