mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 08:02:15 +03:00
630bf277c1
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7573 Co-authored-by: Daniel Chambers <1214352+daniel-chambers@users.noreply.github.com> GitOrigin-RevId: 7807368faaa4bac5c0726c2dab041f8180a3fc31
46 lines
852 B
YAML
46 lines
852 B
YAML
version: "3.6"
|
|
|
|
services:
|
|
dc-reference-agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-reference
|
|
ports:
|
|
- "65005:8100"
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- curl
|
|
- -f
|
|
- localhost:8100/health
|
|
start_period: 5s
|
|
interval: 5s
|
|
timeout: 10s
|
|
retries: 20
|
|
|
|
dc-sqlite-agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-sqlite
|
|
ports:
|
|
- "65007:8100"
|
|
volumes:
|
|
- "./sqlite/dataset_templates:/app/sqlite/dataset_templates"
|
|
environment:
|
|
METRICS: y
|
|
PRETTY_PRINT_LOGS: y
|
|
LOG_LEVEL: debug
|
|
MUTATIONS: y
|
|
DATASETS: y
|
|
DATASET_DELETE: y
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- curl
|
|
- -f
|
|
- localhost:8100/health
|
|
start_period: 5s
|
|
interval: 5s
|
|
timeout: 10s
|
|
retries: 20
|