You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: early fail on non-exposed docker daemon (#3592)
* fix: early fail on non-exposed docker daemon
* Removed redundant check and removed vector from start check on windows
* Update internal/start/start.go
---------
Co-authored-by: Han Qiao <[email protected]>
Copy file name to clipboardExpand all lines: internal/start/start.go
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -280,7 +280,8 @@ EOF
280
280
}
281
281
env=append(env, "DOCKER_HOST="+dindHost.String())
282
282
case"npipe":
283
-
fmt.Fprintln(os.Stderr, utils.Yellow("WARNING:"), "analytics requires docker daemon exposed on tcp://localhost:2375")
283
+
constdockerDaemonNeededErr="Analytics on Windows requires Docker daemon exposed on tcp://localhost:2375.\nSee https://supabase.com/docs/guides/local-development/cli/getting-started?queryGroups=platform&platform=windows#running-supabase-locally for more details."
0 commit comments