Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chekist32/monero-wallet-rpc-docker
- Owner: chekist32
- License: mit
- Created: 2024-02-13T16:17:15.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-25T19:04:53.000Z (11 months ago)
- Last Synced: 2024-11-14T14:32:57.474Z (2 months ago)
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"```