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-cliStart syncing with RPC on testnet:
docker run --rm -it -p 20332:20332 -v $PWD/Chain:/neo-cli/Chain kizzx2/neo-cli:testnetStarting as a daemon:
docker run --name neo-cli -id --rm -p 10332:10332 kizzx2/neo-cliStarting as a daemon with docker-compose:
Use the docker-compose.yml in the repository.