docker-wownero/wownero
lza_menace a155844421 bump to latest release 2021-05-17 14:01:48 -07:00
..
dockerfiles bump to latest release 2021-05-17 14:01:48 -07:00
files fix metric title 2020-12-31 10:57:18 -08:00
.dockerignore adding compose file with traefik for node 2020-07-06 21:06:24 -07:00
.gitignore adding compose file with traefik for node 2020-07-06 21:06:24 -07:00
Dockerfile bumping to latest versions 2021-04-16 08:47:54 -07:00
Makefile bump to latest release 2021-01-19 00:39:59 -08:00
README.md add more instructions to the readme and include a cool image 2020-10-29 15:14:59 -07:00
docker-compose.yaml bump to latest release 2021-05-17 14:01:48 -07:00
release.sh bumping version and allowing compile vs fetch build opts 2021-04-14 10:38:21 -07:00

README.md

Wownero

Container image for the official Wownero source code compiled to provide daemon, wallet CLI, and wallet RPC binaries.

Instructions

Pre-requisites:

  • Recent Ubuntu Linux
  • sudo apt-get install docker.io docker-compose
  • sudo usermod -aG docker $(whoami); logout

Node-in-a-box

The simplest way to get started is to use docker-compose and turn up the provided packages, including the Wownero daemon, monitoring tools, and a visualization/graphing tool.

cd wownero/ # in this folder
docker-compose up -d
# wownerod available at ports 34567 and 34568

You can host the node on an official DNS endpoint for public usage or keep it local for your own private usage.

Manual Daemon and Wallet Setup

The node and wallet software is in the same package, so both can be used from within the Docker container.

# build container image of wownero binaries
docker build -t wownero .

# create network bridge so containers can communicate
docker network create --driver=bridge wownero

# run wownero daemon with RPC bindings
docker run -d --rm --name wownero-daemon \
  --net=wownero \
  -v daemon:/data \
  -p 34568:34568 \
   wownero \
   wownerod \
   --data-dir=/data \
   --rpc-bind-ip=0.0.0.0 \
   --confirm-external-bind \
   --non-interactive

# run wownero-wallet-cli
docker run --rm -it --name wownero-wallet \
  --net=wownero \
  -v wallet:/data \
  wownero \
  wownero-wallet-cli \
    --trusted-daemon \
    --daemon-address wownero-daemon:34568