Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 642 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 642 Bytes

Docker quick start

One of the quickest ways to get Achain up and running on your machine is by using Docker:

docker run -d --name achain-node -p 18888:18888 \
           --restart=always -it imageName \
           --rpcuser username --rpcpassword password --httpdendpoint 0.0.0.0:18888 --server

For example

docker run -d --name achain-node -p 18888:18888 \
           --restart=always -it achain-wallet \
           --rpcuser admin --rpcpassword admin --httpdendpoint 0.0.0.0:18888 --server