Skip to content

Commit

Permalink
Make Docusaurus listen on all interfaces
Browse files Browse the repository at this point in the history
By default, Docusaurus would listen only on the loopback interface,
which does not work with Podman at this time (see [1]).

[1] redhat-developer#6510 (comment)
  • Loading branch information
rm3l committed Feb 2, 2023
1 parent 1dc9884 commit 3da8239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3da8239

Please sign in to comment.