lza_menace
/
docker-wownero
Archiviert
1
0
Fork 1
Run WOWOps ™️ with containers because why the hell not.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
 
 
lza_menace be4114b577
bump version
vor 1 Jahr
dockerfiles bump version vor 1 Jahr
files remove mining shit vor 2 Jahren
.dockerignore remove mining shit vor 2 Jahren
.gitignore remove mining shit vor 2 Jahren
LICENSE Initial commit vor 4 Jahren
Makefile remove mining shit vor 2 Jahren
README.md remove mining shit vor 2 Jahren
docker-compose.yaml remove mining shit vor 2 Jahren
release.sh remove mining shit vor 2 Jahren

README.md

Wownero

Container images for the official Wownero software code compiled or downloaded to provide daemon, wallet CLI, and wallet RPC binaries.

Dockerfiles are available for building images of your choice; wownerod_nocompile can be used for fetching pre-built binaries, the wownerod_compile_* are used for fully building and compiling the C++ software.

Node-in-a-box

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

docker-compose up -d
# wownerod available at ports 34567 and 34568
# prometheus available at port 9090
# exporter (/metrics) available at port 9000
# grafana available at port 3000

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 by fetching binaries
docker build -t wownero -f dockerfiles/wownerod_nocompile dockerfiles 

# or build container image by compiling from source (simple)
docker build -t wownero -f dockerfiles/wownerod_compile_simple dockerfiles 

# 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