mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
17 lines
378 B
YAML
17 lines
378 B
YAML
|
version: "3.6"
|
||
|
|
||
|
services:
|
||
|
postgres:
|
||
|
image: cimg/postgres:14.4-postgis@sha256:492a389895568e2f89a03c0c45c19350888611001123514623551a014e83a625
|
||
|
ports:
|
||
|
- "64001:5432"
|
||
|
environment:
|
||
|
POSTGRES_USER: "hasura"
|
||
|
POSTGRES_PASSWORD: "hasura"
|
||
|
POSTGRES_DB: "hasura"
|
||
|
volumes:
|
||
|
- postgres-data:/var/lib/postgresql/data
|
||
|
|
||
|
volumes:
|
||
|
postgres-data:
|