Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Latest commit

 

History

History
59 lines (35 loc) · 1.45 KB

README.md

File metadata and controls

59 lines (35 loc) · 1.45 KB

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