make: add root install/up/down for the local stack #160
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Jinemi/thermograph#160
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/local-make-targets"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
A fresh checkout had no working path to the stack locally. Neither compose file carries a
build:for backend or frontend -- each ships as its own registry image -- so with no image presentmake dev-upfell through to pulling the:localtag, which nothing publishes, and failed with403 Forbiddenagainst a registry a laptop has no login for.installbuilds both images frombackend/Dockerfileandfrontend/Dockerfileunder exactly the tag the compose files default to;upverifies they exist and says what to run instead of retrying the pull. Image names are read back fromdocker compose config --imagesrather than restated in the Makefile, so an org rename cannot leave it building a tag nothing runs.infra's
dev-up/dev-downnow setCOMPOSE_PROJECT_NAME=thermograph-dev, matchingdeploy/deploy-dev.shand what root CLAUDE.md already described; a local run previously landed in the prod-shapedthermographproject. Dropsdev-up's--build(a no-op since the Dockerfiles moved out of infra) and corrects the comment claiming a 0.0.0.0 default -- the overlay has published on loopback since dev moved to a public VPS.Verified locally:
make installbuilds both images;make upbrings all five containers up healthy;/healthzreturns ok,/api/versionresponds, the frontend serves through backend's proxy fallback (HTTP 200), daemon runs cron-only with 0 restarts;make downtears down cleanly;make -C infra dev-uplands in the same project.No CI path filter covers these files, so this triggers no deploy.