-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (36 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
37 lines (36 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Quickstart compose: один сервис idf-host с заранее bootstrap'нутым
# invest-доменом. После `docker compose up` (~30 сек после билда):
#
# curl http://localhost:3001/api/agent/invest/schema
# npm run demo:rogue
# npm run demo:grant
# npm run demo:smart
#
# IDF_REPO env var больше не нужен — bootstrap происходит внутри
# контейнера entrypoint'ом.
services:
idf-host:
build:
context: .
dockerfile: Dockerfile
args:
# Pin к конкретному коммиту, если нужна стабильность:
# docker compose build --build-arg IDF_REF=<sha>
IDF_REF: main
# `image:` намеренно не указан — это заставит compose сразу
# использовать build вместо попытки pull'нуть несуществующий
# образ из registry (и видеть `pull access denied` в логах).
container_name: fold-host
ports:
# Override via: HOST_PORT=3199 docker compose up
- "${HOST_PORT:-3001}:3001"
environment:
- PORT=3001
- BOOTSTRAP_DOMAIN=invest
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-fsS", "http://localhost:3001/api/effects"]
interval: 10s
timeout: 3s
retries: 5
start_period: 20s