graphql-engine/dc-agents/docker-compose.yaml
Lyndon Maydwell 630bf277c1 SQLite Mutations
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
2023-02-14 11:20:36 +00:00

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