Building Full Node

Downloading Docker Image

Download the provided Full Node Image.

wget

Full Node Download Link

Getting Full Node Image

Gets Full Node from Docker.

$ sudo docker load < omnione-ã…¡mainnet _docker-image-v0.2.tar

Creating the Data directory

Docker is a structure to manage data internally. Make directory to share the data in order to manage from the outside.

$ mkdir -p ~/Raonsecure/docker/mainnet/omnnode-data

It is a path where Block, log is stored.

Executing Full Node

Use the downloaded Full Node Docker Image to execute the Docker container.

docker run -it \
--name omnmainnet_full_you \
-p 18888:8888 -p 19010:19000 -p 10122:22 \
-v ~/Raonsecure/docker/testnet/omnnode-data:/omnione-testnet/bp_node/node_data \
--sig-proxy=false omnione_testnet:20200210 /bin/bash

Command option explanation

  • -it : Uses container's shell

  • --name : Designates the container name that is running

  • -p : Setting the port forwarding (Host OS 18888 -> Full Node 8888)

  • -v : Sharing Host OS directory and sharing the container internal directory

The Full Node is now up and running properly. Next page will handle Full Node settings for interworking.

Last updated