2022-11-14 15:38:19 +03:00
|
|
|
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:
|
2023-02-02 07:26:29 +03:00
|
|
|
- "./sqlite/dataset_templates:/app/sqlite/dataset_templates"
|
2022-11-14 15:38:19 +03:00
|
|
|
environment:
|
|
|
|
METRICS: y
|
|
|
|
PRETTY_PRINT_LOGS: y
|
|
|
|
LOG_LEVEL: debug
|
2023-02-14 14:19:05 +03:00
|
|
|
MUTATIONS: y
|
2023-02-02 07:26:29 +03:00
|
|
|
DATASETS: y
|
|
|
|
DATASET_DELETE: y
|
2022-11-14 15:38:19 +03:00
|
|
|
healthcheck:
|
|
|
|
test:
|
|
|
|
- CMD
|
|
|
|
- curl
|
|
|
|
- -f
|
|
|
|
- localhost:8100/health
|
|
|
|
start_period: 5s
|
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 20
|