SunCoin Masternode Setup — Docker

https://masternode-setup.com
- Vps cold wallet using docker
1- Install docker on vps guide here
2- Pull docker wallet image from dockerhub:
docker pull retlas/masternode-sun
3- Run wallet on vps (docker run with linked volume + open port)
docker run -d — name sun-wallet -v /data/sun:/root/.suncoincore -p YOUR_WALLET_PORT:YOUR_WALLET_PORT retlas/masternode-sun suncoind -daemon=0 -rpcport=YOUR_RCP_PORT -rpcallowip=172.17.0.1 -rpcuser=YOUR_RPC_USER -rpcpassword=YOUR_RPC_PASS
4- Let sync (get info)
5- Add node if sync fail
6- Add to wallet conf file (/data/sun/suncoin.conf)
masternode=1
masternodeprivkey=private_key_generated
masternodeaddr=public_ip:port
7- Restart docker container
docker restart sun-wallet
- Local hot wallet setup
In masternode tab, clic start
- Commands on vps
/Check debug logs
:tail -f /data/sun/debug.log
/Chech masternode status
docker exec sun-wallet suncoin-cli masternode status
/Check if masternode is in global list
docker exec sun-wallet suncoin-cli masternodelist full
All thanks to masternode-setup.com for the guide and the docker file
