graphql-engine/dc-agents/docker-compose.yaml
Samir Talwar b2ac4d82bc Remove the version from Docker Compose files.
Recent versions of Docker Compose no longer support this, instead just printing a warning.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10937
GitOrigin-RevId: 97a82968c48f5c09d6cbe74d8ea7386979e46e7a
2024-07-17 13:49:05 +00:00

44 lines
836 B
YAML

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