fix issue ssb-server port settings

This commit is contained in:
joseelinchevalay 2020-03-25 11:15:29 +01:00
parent fdb88fe137
commit e71d12de6f
3 changed files with 5 additions and 4 deletions

View File

@ -49,7 +49,7 @@ services:
context: ./ssb-server
dockerfile: Dockerfile
ports:
- "8009:8008"
- "8008:8008"
volumes:
- ~/.ssb-test/:/home/astroport/.ssb
secret2dunikey:

View File

@ -3,9 +3,9 @@
"incoming": {
"net": [
{
"scope": "public", "external": ["127.0.0.1"], "transform": "shs", "port": 8008
"scope": "public", "external": ["0.0.0.0"], "transform": "shs", "port": 8008
},
{ "scope": "private", "transform": "shs", "port": 8008, "host": "127.0.0.1" }
{ "scope": "private", "transform": "shs", "port": 8008, "host": "0.0.0.0" }
]
},
"outgoing": {

View File

@ -1,5 +1,6 @@
#!/bin/bash
. ~/.bashrc
while true; do
ssb-server start --host 127.0.0.1
ssb-server start
done