feat(docker): add live reload workflow#6
Open
scotluns wants to merge 1 commit into
Open
Conversation
This was referenced May 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
This makes local development hot-reload across the frontend, REST API, and TAXII server so developers can verify changes faster while keeping the dev stack close to the production Compose shape used during normal deployment cycles.
What Changed
setup-workbench.shnow generates developer-mode Compose Watch overrides for all three services.src->/workspace/srcappandbin->/usr/src/app/appand/usr/src/app/bin/usr/src/app/resources/rest-api-service-config.jsonsrc->/app/srcHow To Verify
From
attack-workbench-deployment:Frontend live reload:
Temporarily change
ExploretoExplore Live. Confirm the frontend updates in the browser after reload/HMR.REST API live reload:
Temporarily change the ping handler to
return res.status(200).send('rest api watch works');, then run:Confirm the changed response appears after Compose Watch syncs and the REST API watcher restarts the process.
TAXII live reload:
Temporarily change the ping handler to use
HttpStatus.OKand return a string, then run:Confirm the changed response appears after Compose Watch syncs and Nest watch recompiles/restarts the service.
Also verified:
Related PRs
Landing
Merge after the frontend, REST API, and TAXII live-reload PRs land.