mirror of
https://git.wownero.com/asymptotically/docker-monero.git
synced 2024-08-15 01:03:28 +00:00
monero: Add wallet RPC server to README
This commit is contained in:
parent
323496d717
commit
13c510f995
1 changed files with 20 additions and 1 deletions
|
@ -26,7 +26,26 @@ docker run \
|
||||||
--restricted-rpc
|
--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
|
### Links
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue