docs: self-hosted install and upgrade fixes (issue #72) - #78
Merged
Conversation
…IFEST_VERSION pinning, lockout recovery, OAuth redirect note (issue #72)
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.
Processes the six findings of #72, recommended options, each verified before the edit.
Finding 1 (option 3) — the four Docker Run blocks published port 2099 with no
PORTenv, but the published image sets none and the app falls back to 3001, so the dashboard never answered on the documented port. I reproduced both halves live againstmanifestdotbuild/manifest:latestbefore editing: run as documented,curl http://localhost:2099gets connection reset and the log readsServer running on http://0.0.0.0:3001; with-e PORT=2099, HTTP 200. The blocks now carry-e PORT=2099and keep the open-p 2099:2099mapping: a docker run user with their own PostgreSQL is usually on a server and wants the network access. The Custom port block gets the same one-line fix.Finding 2 (option 1) — the pre-v6.18.0 upgrade note said
bash install.sh --upgrade, but the recommended install runs the script from the network and leaves nothing on disk. The block now downloads the script first (the form the script's own header documents), with a parenthesis for--dirinstalls.Finding 3 (option 1) — pinning is now
MANIFEST_VERSIONin.env, the only pin that survivesbash install.sh --upgradereplacing the compose file (which holds no literal tag to edit: the image line is templated). Tag examples refreshed from the 5.46 line to 6.18.0 / 6.18 / 6. New "Image version" row in the environment-variables reference.Finding 4 (option 1) — recovery paragraph at the end of the LAN section for the "Invalid origin" lockout: the admin account was really created, setup won't run again, and fixing
BETTER_AUTH_URLplusdocker compose up -dgets you in with the credentials you already chose.Finding 5 (option 1) — the LAN step now tells installs exposed the old way (hand-edited
ports:line) to move the change toHOST_BIND_ADDRESSbefore the next installer upgrade wipes it, and the Upgrading section now distinguishes the two paths:docker compose pullleaves your compose file alone,bash install.sh --upgradereplaces it after a timestamped backup, and custom edits belong indocker-compose.override.yml. Ships with finding 3 as the issue prescribed, since they share the compose-replacement fact.Finding 6 (option 1) — the
BETTER_AUTH_URLstep now says a configured Google, GitHub or Discord sign-in needs its redirect URI updated in the provider's console, with the callback formula.Coherence GREEN (48 pages, 58 vars).
Closes #72