mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
b012f2ebc7
[GDC-718]: https://hasurahq.atlassian.net/browse/GDC-718?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7743 GitOrigin-RevId: 6c3577c1d4ffd2212a72b6e1a24e0e384f2db046
45 lines
833 B
YAML
45 lines
833 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
|
|
DATASETS: y
|
|
DATASET_DELETE: y
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- curl
|
|
- -f
|
|
- localhost:8100/health
|
|
start_period: 5s
|
|
interval: 5s
|
|
timeout: 10s
|
|
retries: 20
|