Pantry tracker app with: - FastAPI backend + Vue 3 SPA frontend - SQLite via circuitforge-core (migrations 001-005) - Inventory CRUD, barcode scan, receipt OCR pipeline - Expiry prediction (deterministic + LLM fallback) - CF-core tier system integration - Cloud session support (menagerie)
21 lines
421 B
YAML
21 lines
421 B
YAML
services:
|
|
api:
|
|
build:
|
|
context: ..
|
|
dockerfile: kiwi/Dockerfile
|
|
network_mode: host
|
|
env_file: .env
|
|
volumes:
|
|
- ./data:/app/kiwi/data
|
|
- ${HOME}/.config/circuitforge:/root/.config/circuitforge:ro
|
|
restart: unless-stopped
|
|
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/web/Dockerfile
|
|
ports:
|
|
- "8511:80"
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- api
|