From f32d05e2298614df4af92c51cbedee0c6d550995 Mon Sep 17 00:00:00 2001 From: asymmetric Date: Tue, 30 Mar 2021 21:07:14 +0000 Subject: [PATCH] Fix Docker port mapping Use 127.0.0.1 for the host side of the mapping (localhost), rather than the incorrect 127.0.0.0. --- docs/with-docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/with-docker.md b/docs/with-docker.md index 9896b4e..476c0a0 100644 --- a/docs/with-docker.md +++ b/docs/with-docker.md @@ -14,7 +14,7 @@ docker volume create ssb ## Run ``` -docker run --mount source=ssb,target=/home/node/.ssb --publish 127.0.0.0:3000:3000 --rm oasis +docker run --mount source=ssb,target=/home/node/.ssb --publish 127.0.0.1:3000:3000 --rm oasis ``` You should now be able to open http://localhost:3000 in your browser.