Snapshot of in-progress work across local_backend, manager_dashboard, and waiter_pwa (pricing, chat, fiscal, prep zones, recovery codes, CRM, inventory, permissions), plus the nginx/docker-compose deploy fixes for the Unraid + NPM reverse-proxy setup. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
23 lines
483 B
YAML
23 lines
483 B
YAML
services:
|
|
backend:
|
|
build: ./local_backend
|
|
image: ${REGISTRY}/pos-backend:${VERSION:-latest}
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ${FISCAL_PATH:-./fiscal_test}:/mnt/fiscal
|
|
|
|
waiter_pwa:
|
|
build:
|
|
context: ./waiter_pwa
|
|
image: ${REGISTRY}/pos-waiter:${VERSION:-latest}
|
|
ports:
|
|
- "5173:80"
|
|
|
|
manager_dashboard:
|
|
build:
|
|
context: ./manager_dashboard
|
|
image: ${REGISTRY}/pos-manager:${VERSION:-latest}
|
|
ports:
|
|
- "5174:80"
|