Good changes

This commit is contained in:
Andras Schmelczer 2026-02-10 22:09:46 +00:00
parent d39d1b15fd
commit 1f68ca0512
23 changed files with 670 additions and 289 deletions

View file

@ -23,6 +23,7 @@ services:
POCKETBASE_URL: http://pocketbase:8090
SCREENSHOT_URL: http://screenshot:8002
OLLAMA_URL: http://host.docker.internal:11434
R5_URL: http://r5:8003
depends_on:
pocketbase:
condition: service_healthy
@ -84,12 +85,32 @@ services:
retries: 3
start_period: 5s
r5:
build: ./r5-service
ports:
- "8003:8003"
networks:
- dev-network
volumes:
- ./property-data/transit:/data/transit
- r5-cache:/root/.cache/r5py
environment:
TRANSIT_DATA_DIR: /data/transit
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8003/health"]
interval: 10s
timeout: 5s
retries: 3
start_period: 600s
init: true
volumes:
pb-data:
cargo-registry:
cargo-target:
frontend-node-modules:
screenshot-cache:
r5-cache:
networks:
dev-network: