mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
37 lines
906 B
YAML
37 lines
906 B
YAML
version: '3.6'
|
|
services:
|
|
postgres:
|
|
image: postgres:10.5
|
|
restart: always
|
|
volumes:
|
|
- db_data:/var/lib/postgresql/data
|
|
graphql-engine:
|
|
image: hasura/graphql-engine:v1.0.0-alpha35
|
|
depends_on:
|
|
- "postgres"
|
|
restart: always
|
|
environment:
|
|
# database url to connect
|
|
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:@postgres:5432/postgres
|
|
# enable the console served by server
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set "false" to disable console
|
|
## uncomment next line to set an access key
|
|
# HASURA_GRAPHQL_ACCESS_KEY: mysecretaccesskey
|
|
command:
|
|
- graphql-engine
|
|
- serve
|
|
caddy:
|
|
image: abiosoft/caddy:0.11.0
|
|
depends_on:
|
|
- "graphql-engine"
|
|
restart: always
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ./Caddyfile:/etc/Caddyfile
|
|
- caddy_certs:/root/.caddy
|
|
volumes:
|
|
db_data:
|
|
caddy_certs:
|