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.
24 lines
428 B
YAML
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:
|