liuis / conflux-local-network

Docker-compose based configuration to easily run locally conflux node && deployed dev/test network

Home Page:https://conflux-chain.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker Pulls Docker Stars

warning

This repo run the conflux-chain node is the test-mode, just for test/dev environment, don't use this for the fromal online environment.

conflux-local-network

Docker-compose based configuration to easily run locally deployed dev/test network

if you don't use docker-compose, just docker && if you want build by yourself , just run:

docker build -t conflux-chain:v0.2.4 .

USE:

docker pull liqiazero/conflux-chain:v0.2.4


docker run --name conflux-chain  -p 12537:12537 -p 32323:32323 -p 32323:32323/udp -p 14629:14629 -p 12539:12539 -p 19629:19629 -d liqiazero/conflux-chain:v0.2.4

if u want use docker-compose, just following:

docker-compose

To start the network:

docker-compose up -d

To destroy the network:

docker-compose down

To cleanup the associated docker volumes, -v option could be used:

docker-compose down -v

More details can be found in docker-compose documentation.

Single Node Configuraiton

To use a Single Node Configuration just append -f singlenode.yml to the docker-compose command. Example:

docker-compose -f singlenode.yml up

About

Docker-compose based configuration to easily run locally conflux node && deployed dev/test network

https://conflux-chain.org

License:MIT License


Languages

Language:Shell 64.0%Language:Dockerfile 27.9%Language:Python 8.0%