fix: IPv6 socket address parsing for Docker deployments#14
Merged
jamiepine merged 1 commit intoFeb 17, 2026
Merged
Conversation
IPv6 addresses require brackets when combined with a port (e.g., [::]:19898 not :::19898). The docker-entrypoint.sh generates bind = :: for the API server, which caused a parse error when constructing the socket address. Fixes spacedriveapp#9 Fixes spacedriveapp#12
rktmeister
pushed a commit
to rktmeister/spacebot
that referenced
this pull request
Mar 11, 2026
…nd-address fix: IPv6 socket address parsing for Docker deployments
slvnlrt
added a commit
to slvnlrt/spacebot
that referenced
this pull request
Jun 25, 2026
- README: cutover-wired status, current code map (trait, deleted dup modules) - handoff: what's done (trait/cutover/runtime-validated), Plan C = what's left, decisions A(settled)/B(documented)/C(open), known landmines - followups: spacedriveapp#3 + spacedriveapp#4 RESOLVED; spacedriveapp#7 partly (384-dim runs, recall benchmark TODO); added spacedriveapp#13 build_channel_context landmine, spacedriveapp#14 cfg-split dup, spacedriveapp#15 migrate unwired - design.md: banner marking it as original intent; points to README/handoff/followups
slvnlrt
added a commit
to slvnlrt/spacebot
that referenced
this pull request
Jun 25, 2026
slvnlrt
added a commit
to slvnlrt/spacebot
that referenced
this pull request
Jun 25, 2026
…construction, spacedriveapp#14) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01L4YiSsKqD5hx9ETS148EwL
slvnlrt
added a commit
to slvnlrt/spacebot
that referenced
this pull request
Jun 25, 2026
…veapp#14 (dedup helper) RESOLVED; only spacedriveapp#9 (deferred) remains
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.
IPv6 addresses require brackets when combined with a port (e.g., [::]:19898 not :::19898). The docker-entrypoint.sh generates bind = :: for the API server, which caused a parse error when constructing the socket address.
Fixes #9
Fixes #12