Files
harmony/examples/compose_java_react/app/docker-compose.yml
Jean-Gabriel Gill-Couture eea006535b refactor: drop harmony_app landfill
Scores own deploy. harmony_app is identity, images, context, and
HarmonyApp→Scores. Authoring DX lives in dx. Compose/chart/Application
model and the Helm render test are gone.
2026-09-08 22:10:34 -04:00

24 lines
428 B
YAML

# Original local compose. HarmonyApp does not import this file.
name: timesheet
services:
backend:
build: ./backend
ports:
- "8080:8080"
environment:
- DB_PATH=/data/timesheet.db
volumes:
- timesheet-data:/data
frontend:
build: ./frontend
ports:
- "8081:80"
environment:
- BACKEND_URL=http://backend:8080
depends_on:
- backend
volumes:
timesheet-data: