Add GenieACS / MongoDB sample#755
Open
GeiserX wants to merge 1 commit into
Open
Conversation
GenieACS is an open-source TR-069 (CWMP) Auto Configuration Server used to remotely manage CPE devices such as routers, ONTs and gateways. This adds a basic local/dev sample composed of the GenieACS app and a MongoDB database. MongoDB is kept as an internal service (not published on the host) and the README notes the sample is not production ready and that the JWT secret and database credentials must be replaced before real use. Closes docker#691 Signed-off-by: GeiserX <9169332+GeiserX@users.noreply.github.com>
|
I looked through the PR diff and this matches the scope discussed in #691. The parts that matter for maintainer review are in place:
No extra scope concerns from me. This is much easier to review than a production-oriented sample would have been. |
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.
Summary
Adds a basic Compose sample for GenieACS, an open-source TR-069 (CWMP) Auto Configuration Server used to remotely manage CPE devices (routers, ONTs, gateways). This fills a gap in the collection — there is currently no network device management / TR-069 sample.
Proposed and discussed in #691.
Scope
Per the feedback on #691, this is kept as a minimal local/dev sample (listed under "Basic setups… not production ready"):
genieacs-mongodb/compose.yaml—genieacs+mongoonlygenieacs-mongodb/README.mdone entry in the root
README.mdMongoDB is internal (
expose, not published on the host); only the GenieACS ports (7547/7557/7567/3000) are mapped.The README flags that the sample is not production ready, and that the
GENIEACS_UI_JWT_SECRETand database credentials must be replaced before real use.Test plan
docker compose configvalidatesdocker compose up -d— MongoDB becomes healthy, GenieACS startshttp://localhost:300027017/tcponly)docker compose down -vcleans upCloses #691