Stabilize Datum container networking

This commit is contained in:
Dorian
2026-05-09 16:26:18 +01:00
parent 7a85e805a7
commit 2bbb89c53f
4 changed files with 24 additions and 22 deletions

View File

@@ -64,7 +64,7 @@ function formatErr(err: unknown): string {
const datumHost = new URL(config.datum.url).hostname;
const hint =
hostname === datumHost
? "; check DATUM_NETWORK or set DATUM_URL to a hostname/IP reachable from the gashboard API container"
? "; make sure gashboard is attached to Umbrel's Docker network or set DATUM_URL to a hostname/IP reachable from the API container"
: "";
return `${err.message}: DNS could not resolve ${hostname} (${code})${hint}`;
}