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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
lza_menace 81e6913c3e
specify tag/release to clone and compile in dockerfile, bump to latest release
4 years ago
..
files changing lines to bars for node metrics 4 years ago
.dockerignore adding compose file with traefik for node 4 years ago
.gitignore adding compose file with traefik for node 4 years ago
Dockerfile specify tag/release to clone and compile in dockerfile, bump to latest release 4 years ago
README.md adding dockerfile for compiling wownero binaries from source 4 years ago
docker-compose.yaml specify tag/release to clone and compile in dockerfile, bump to latest release 4 years ago

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