monero: Add wallet RPC server to README

This commit is contained in:
Matt Smith 2020-07-01 15:03:35 +01:00
parent 323496d717
commit 13c510f995
No known key found for this signature in database
GPG Key ID: D0EAC8943FB1B2C1
1 changed files with 20 additions and 1 deletions

View File

@ -26,7 +26,26 @@ docker run \
--restricted-rpc
```
<!-- TODO: Write wallet usage example. -->
### Wallet Usage Example
```
docker run \
--name monero-wallet-rpc \
--rm \
-d \
--entrypoint /bin/monero-wallet-rpc \
-v /var/lib/monero/wallet:/data \
-p 18090:18090 \
moneromint/monero \
--daemon-host 1.2.3.4 \
--trusted-daemon \
--wallet-file /data/wallet \
--shared-ringdb-dir /data/shared-ringdb \
--rpc-bind-ip 0.0.0.0 \
--rpc-bind-port 18090 \
--confirm-external-bind \
--disable-rpc-auth
```
### Links