mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
283b77c5e0
GitOrigin-RevId: cb066ee5e6738973f05a442230c074cb262e8c8d
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
version: '3.6'
|
|
services:
|
|
postgres:
|
|
image: postgres:12
|
|
restart: always
|
|
volumes:
|
|
- db_data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_PASSWORD: postgrespassword
|
|
graphql-engine:
|
|
image: hasura/graphql-engine:v2.0.0-beta.2
|
|
depends_on:
|
|
- "postgres"
|
|
restart: always
|
|
environment:
|
|
# database url to connect
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres
|
|
## enable the console served by server
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set "false" to disable console
|
|
## enable debugging mode. It is recommended to disable this in production
|
|
HASURA_GRAPHQL_DEV_MODE: "true"
|
|
## uncomment next line to set an admin secret
|
|
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
|
|
command:
|
|
- graphql-engine
|
|
- serve
|
|
caddy:
|
|
image: caddy/caddy
|
|
depends_on:
|
|
- "graphql-engine"
|
|
restart: always
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./Caddyfile:/etc/caddy/Caddyfile
|
|
- caddy_certs:/root/.caddy
|
|
volumes:
|
|
db_data:
|
|
caddy_certs:
|