Last active
January 1, 2018 10:07
-
-
Save robertohuertasm/9b17e567c42fbf7084fbed6883d08870 to your computer and use it in GitHub Desktop.
IOTA node with docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some interesting urls: | |
- https://github.com/bluedigits/iota-node | |
- https://forum.helloiota.com/2424/Setting-up-a-VPS-IOTA-Full-Node-from-scratch | |
Basically, run this: | |
```sh | |
docker run -d -p 14265:14265 -p 15777:15777 -p 14777:14777/udp --name iri iotaledger/iri /usr/bin/java -XX:+DisableAttachMechanism -Xmx8g -Xms256m -Dlogback.configurationFile=/iri/conf/logback.xml -Djava.net.preferIPv4Stack=true -jar iri.jar -p 14265 -u 14777 -t 15777 --remote | |
#finally | |
docker run -d -p 18600:18600 -p 16600:16600 --name nelson romansemko/nelson -r localhost -i 14265 -u 14777 -t 15777 --neighbors "mainnet.deviota.com/16600 mainnet2.deviota.com/16600 mainnet3.deviota.com/16600 iotairi.tt-tec.net/16600" | |
``` | |
Then, `npm i -g iota-pm` and after that `iota-pm -i http://localhost:14265 -p localhost:8888` | |
You will be able to see a management web app for your node. | |
NOTE: when running nelson you must change localhost with your ip. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment