docker-wownero/wownero
lza_menace 0eb1ae014f changing lines to bars for node metrics 2020-09-14 08:56:07 -07:00
..
files changing lines to bars for node metrics 2020-09-14 08:56:07 -07: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 adding dockerfile for compiling wownero binaries from source 2020-07-01 10:26:56 -07:00
README.md adding dockerfile for compiling wownero binaries from source 2020-07-01 10:26:56 -07:00
docker-compose.yaml update dashboard and rpc port bindings 2020-09-03 09:43:02 -07:00

README.md

Wownero

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

# 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