Skip to content

Instantly share code, notes, and snippets.

@EmbeddedAndroid
Last active April 20, 2018 21:00
Show Gist options
  • Save EmbeddedAndroid/a0185e1dedbbdc8e280df6b4284388f8 to your computer and use it in GitHub Desktop.
Save EmbeddedAndroid/a0185e1dedbbdc8e280df6b4284388f8 to your computer and use it in GitHub Desktop.
Install a Haven Full Node Wallet
1) Install Docker - https://docs.docker.com/install/
2) Create your blockchain and wallet volume mounts (This will store your persistent data)
2a) mkdir /home/user/blockchain/haven
2b) mkdir /home/user/wallet/haven
3) Start havend
3a) docker run -dit --name havend --restart=always -v /home/user/blockchains/haven:/root/.haven -v /home/user/wallets/haven:/wallet cryptowallets/havend:latest
4) Monitor havend sync status
4a) docker logs -f havend
5) Access your wallet
5a) docker exec -ti havend /bin/bash -c 'cd /wallet && haven-wallet-cli'
6) Profit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment