Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chekist32/monero-wallet-rpc-docker

Simple monero-wallet-rpc docker image
https://github.com/chekist32/monero-wallet-rpc-docker

Last synced: 6 days ago
JSON representation

Simple monero-wallet-rpc docker image

Awesome Lists containing this project

README

        

# Monero-Wallet-Rpc

## DockerHub
https://hub.docker.com/r/chekist32/monero-wallet-rpc

## Example usage

```docker-compose.yml```
```yml
version: '3'

services:
monero-rpc-test:
image: chekist32/monero-wallet-rpc
ports:
- 38083:38083
volumes:
- /path_to_your_wallet_dir/:/monero/wallet
command:
# For reference see: https://github.com/chekist32/monero-wallet-rpc-docker/blob/master/docs/monero-wallet-rpc-man.md
- "--stagenet"
- "--daemon-address=stagenet.community.rino.io:38081"
- "--trusted-daemon"
- "--rpc-bind-port=38083"
- "--rpc-login=user:pass"
- "--wallet-dir=/monero/wallet"

```