Docker image to run neo-cli in one line
6.2K
Docker image to easily run NEO-CLI client. This is also the easiest method to run NEO-CLI as a daemon as of writing.
Start syncing with RPC:
docker run --rm -it -p 10332:10332 -v $PWD/Chain:/neo-cli/Chain kizzx2/neo-cli
Start syncing with RPC on testnet:
docker run --rm -it -p 20332:20332 -v $PWD/Chain:/neo-cli/Chain kizzx2/neo-cli:testnet
Starting as a daemon:
docker run --name neo-cli -id --rm -p 10332:10332 kizzx2/neo-cli
Starting as a daemon with docker-compose:
Use the docker-compose.yml in the repository.
Content type
Image
Digest
Size
138.3 MB
Last updated
almost 7 years ago
docker pull kizzx2/neo-cli