Skip to content

Setup a fully automated NANO cryptocurrency node as part of an dockerized stack with fast-syncing and easy SSL support.

Notifications You must be signed in to change notification settings

labmir/nano-node-docker

 
 

Repository files navigation

NANO Node Docker

Logo

Description

Install a NANO node on your server with a vast variety of tools in a couple on minutes! 💫

Note
For hosting a NANO node in the BETA network, checkout the "beta" branch.

This project will build and deploy the following containers on your Docker host:

Container name Description
nano-node The NANO node created out of the official NANO Docker Image. RPC is enabled but not publicly exposed. (Renamed to "nano-beta-node" for BETA)
nano-node-monitor The popular NANO Node Monitor PHP application based on NanoTools's Docker image.
watchtower A process watching all the other containers and automatically applying any updates to their base image. No need to manually upgrade your node anymore.

SSL Support with Let's Encrypt

Optionally, if a domain name is available for your host, NANO Node Docker can also serve your monitor securely using HTTPS. If this feature is enabled (using the -d argument with the installer), the stack will also include the following containers:

Container name Description
nginx-proxy An instance of the popular Nginx web server running in a reverse proxy setup. Handles the traffic and serves as a gateway to your host.
nginx-proxy-letsencrypt A lightweight companion container for the nginx-proxy. It allows the creation/renewal of Let's Encrypt certificates automatically.

Quick Start

Download or clone the latest release, open a bash terminal and fire up the installation script:

$ cd ~ && git clone https://github.com/lephleg/nano-node-docker.git && cd ~/nano-node-docker
$ sudo ./setup.sh -s

That's it! You can now navigate to your host IP to check your Nano Node Monitor dashboard. Do not forget to write down your wallet seed as it appears in the output of the installer.

Available command flags/arguments

The following flags are available when running the stack installer:

Flag Argument Description
-d your domain name Sets the domain name to be used. Required for SSL-enabled setups.
-e your email address Sets your email for Let's Encrypt certificate notifications. Optional for SSL-enabled setups.
-f - Enables fast-syncing by fetching the latest ledger and placing it into /root/Nano/ inside nano-node container.
-q - Quiet mode. Hides any output.
-s - Prints the unecrypted seed of the node wallet during the setup (WARNING: in most cases you may want to avoid this for security purposes).
-t Docker image tag Indicates the preferred tag for the nanocurrency Docker image. Defaults to "latest". Optional.

NANO Node CLI bash alias

NANO node runs inside the nano-node container. In order to execute commands from its Command Line Interface you'll have to enter the container or execute them by using the following Docker command:

$ docker exec -it nano-node nano_node <command>

For convinience the following shorthand alias is set by the installer:

$ nano-node <command>

Both of the above formats are interchangeable.

Examples

Install with SSL enabled

After your DNS records are setup, fire up the installation script with the domain (-d) argument:

$ sudo ./setup.sh -d mydomain.com -e [email protected]

The email (-e) argument is optional and would used by Let's Encrypt to warn you of impeding certificate expiration.

Done! Navigate to your domain name to check your Nano Node Monitor Dashboard over HTTPS!

Install with fast-syncing

NANO Node Docker stack can also bootstrap any newly created node (or an existing one) with the latest ledger files. This implies that you are willing to trust third-party sources for your node history. The latest ledger files are obtained from the NANO Foundation's Yandex disk while My Nano Ninja API handles the extraction and final redirect.

Just add the -f flag to your installer command:

$ sudo ./setup.sh -f

WARNING: You are strongly adviced to BACKUP your wallet seed before trying to fast-sync an existing node.

Install with a different NANO node image

In some cases (like in the BETA network) you may want to use a different Docker image tag for your node, other than the default "latest":

$ sudo ./setup.sh -t V16.0RC2

Note: For the mainnet, you are strongly advised to stick with the "latest" image tag. Do otherwise, only if instructed by the NANO core team.

Combining installer flags

All the installer flags can be chained, so you can easily combine them like this:

$ sudo ./setup.sh -sfd mydomain.com -e [email protected]

(display seed, apply fast-sync and use Let's Encrypt with your email supplied)

Screenshot

Self-configurable Installation

Please check the wiki for more detailed instructions on how to manually self-configure NANO Node Docker.

Credits

Support

Stargazers over time

If you really liked this tool, just give this project a star ⭐️ so more people get to know it. Cheers! :)

About

Setup a fully automated NANO cryptocurrency node as part of an dockerized stack with fast-syncing and easy SSL support.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%