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.
This commit is contained in:
asymmetric 2021-03-30 21:07:14 +00:00 committed by GitHub
parent 9115f3aafb
commit f32d05e229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.