Hello,
I want to run a status node on my VPS with docker. Is the following Docker command suitable for this?
docker run -p 8545:8545 -p 30303:30303 -v $(pwd)/config.json:/config.json -v $(pwd)/statusd:/root/.statusd statusteam/status-go:0.55.1 -register -log DEBUG -c /config.json -mailserver -network-id 1
config.json:
{
"AdvertiseAddr": "<ip address of vps>",
"ListenAddr": "0.0.0.0:30303",
"HTTPEnabled": true,
"HTTPHost": "127.0.0.1",
"HTTPPort": 8545,
"APIModules": "eth,net,web3,admin,mailserver",
"RegisterTopics": ["whispermail"],
"WakuConfig": {
"Enabled": true,
"EnableMailServer": true,
"DataDir": "/var/tmp/statusd/waku",
"MailServerPassword": "status-offline-inbox",
"MailServerDataRetention": 30
}
}
Is this configuration suitable?
Furthermore, I wanted to ask how to run a node on IPv6 and IPv4. Is there only one field for the IP address in the config file?