You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Matt Smith b85cfae1a8
wownero: Add wallet RPC server to README
4 years ago
..
Dockerfile wownero: Init at 0.8.0.1 4 years ago
README.md wownero: Add wallet RPC server to README 4 years ago

README.md

wownero

Docker image for the Wownero P2P daemon and wallet RPC server.

Features

  • Super minimal image. No BS.

Daemon Usage Example

docker volume create wownerod_data
docker run \
       --name wownerod \
       --rm \
       -d \
       --entrypoint /bin/wownerod \
       -v wownerod_data:/data \
       -p 18080:18080 \
       -p 18081:18081 \
       moneromint/wownero \
       --non-interactive \
       --data-dir /data \
       --rpc-bind-ip 0.0.0.0 \
       --confirm-external-bind \
       --restricted-rpc

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