docker/compose/README.md
This directory contains the following compose configurations:
To use these compositions:
docker-compose upTo build your own complete testnet:
cd validator-testnetdocker-compose up -dcd ..If you would like to run the CLI client and interact with your testnet:
cd client-clirun, not up: docker-compose run client-clih and press enter to see commandsaccount create; then you can reference it and add funds to it with account mint 0 10 XUS (mint 10 XUS for account #0)If you would like to clear the validator/blockchain data and start from scratch, either remove the docker volume diem-shared,
or run docker-compose run validator rm -rf '/opt/diem/var/*' from the validator-testnet directory.
To clear just the validator logs, run docker-compose run validator rm -rf '/opt/diem/var/validator.log'