graphql-engine/install-manifests/docker-compose-https/docker-compose.yaml

37 lines
906 B
YAML
Raw Normal View History

2018-09-13 12:33:13 +03:00
version: '3.6'
services:
postgres:
image: postgres:10.5
2018-09-13 12:33:13 +03:00
restart: always
volumes:
- db_data:/var/lib/postgresql/data
graphql-engine:
2019-01-18 17:23:52 +03:00
image: hasura/graphql-engine:v1.0.0-alpha35
2018-09-13 12:33:13 +03:00
depends_on:
- "postgres"
restart: always
environment:
# database url to connect
2018-09-13 12:33:13 +03:00
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
2018-09-13 12:33:13 +03:00
command:
- graphql-engine
- serve
caddy:
image: abiosoft/caddy:0.11.0
2018-09-13 12:33:13 +03:00
depends_on:
- "graphql-engine"
restart: always
ports:
- "80:80"
- "443:443"
volumes:
- ./Caddyfile:/etc/Caddyfile
- caddy_certs:/root/.caddy
volumes:
db_data:
caddy_certs: