From 3da82397a9d7772db72f27e9336eefc74d6614d1 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 2 Feb 2023 12:19:46 +0100 Subject: [PATCH] Make Docusaurus listen on all interfaces By default, Docusaurus would listen only on the loopback interface, which does not work with Podman at this time (see [1]). [1] https://github.com/redhat-developer/odo/issues/6510#issuecomment-1400280994 --- docs/website/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/package.json b/docs/website/package.json index 87869d21301..f2f91654dcb 100644 --- a/docs/website/package.json +++ b/docs/website/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "docusaurus": "docusaurus", - "start": "docusaurus start", + "start": "docusaurus start --host 0.0.0.0", "build": "docusaurus build && ./build_godoc.sh", "swizzle": "docusaurus swizzle", "deploy": "docusaurus deploy",