Compare commits

...

8 Commits

2
.gitignore vendored

@ -0,0 +1,2 @@
data
.env

@ -1,3 +1,59 @@
# docker-wownero
# Wownero
Run WOWOps :tm: with containers because why the hell not.
Container images for the official Wownero software code compiled or downloaded to provide daemon, wallet CLI, and wallet RPC binaries.
[Dockerfiles](./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.
![](files/static/graf1.png)
![](files/static/graf2.png)
## 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
```

@ -1,30 +1,45 @@
version: '3'
version: "3.7"
volumes:
grafana:
prometheus:
x-log-config: &log-config
logging:
driver: json-file
options:
max-size: "50m"
max-file: "20"
services:
prometheus:
image: prom/prometheus:v2.18.0
container_name: wownero_prometheus
restart: unless-stopped
image: prom/prometheus:v2.36.0
command:
- --config.file=/etc/prometheus/prometheus.yml
- --config.file=/etc/prometheus/config.yaml
- --storage.tsdb.path=/prometheus
- --web.console.libraries=/usr/share/prometheus/console_libraries
- --web.console.templates=/usr/share/prometheus/consoles
- --web.enable-admin-api
- --storage.tsdb.retention.time=360d
volumes:
- prometheus:/prometheus
- ./files/prometheus:/etc/prometheus
container_name: wownerod_prometheus
restart: unless-stopped
ports:
- 127.0.0.1:9090:9090
volumes:
- prometheus:/prometheus
- ./files/prometheus/config.yaml:/etc/prometheus/config.yaml:ro
<<: *log-config
grafana:
image: grafana/grafana:6.5.0
container_name: wownero_grafana
user: "1000"
command:
- -config=/etc/grafana/grafana.ini
container_name: wownerod_grafana
restart: unless-stopped
image: grafana/grafana:8.5.4
ports:
- 127.0.0.1:3000:3000
volumes:
- grafana:/var/lib/grafana
- ./files/grafana/grafana.ini:/etc/grafana/grafana.ini:ro
- ./files/grafana/provisioning:/etc/grafana/provisioning:ro
- ./files/grafana/dashboards:/var/lib/grafana/dashboards:ro
environment:
HOSTNAME: grafana
GF_SERVER_ROOT_URL: ${GRAFANA_URL}
@ -38,24 +53,20 @@ services:
GF_AUTH_DISABLE_LOGIN_FORM: "${GF_AUTH_DISABLE_LOGIN_FORM:-true}"
GF_SECURITY_ADMIN_PASSWORD: "${GF_SECURITY_ADMIN_PASSWORD}"
GF_SECURITY_ADMIN_USER: "${GF_SECURITY_ADMIN_USER}"
volumes:
- ./files/grafana/dashboards.yaml:/etc/grafana/provisioning/dashboards/default.yaml:ro
- ./files/grafana/prometheus.yaml:/etc/grafana/provisioning/datasources/prometheus.yaml:ro
- ./files/grafana/daemon_metrics.json:/var/lib/grafana/dashboards/daemon_metrics.json:ro
- grafana:/var/lib/grafana
<<: *log-config
exporter:
container_name: wownero_exporter
command:
- --monero-addr=http://wownerod:34570
container_name: wownerod_exporter
restart: unless-stopped
ports:
- 127.0.0.1:9000:9000
build:
context: dockerfiles
dockerfile: wownerod_exporter
restart: unless-stopped
environment:
DAEMON_HOST: http://wownerod:34570
PORT: 8080
ports:
- 127.0.0.1:8080:8080
<<: *log-config
wownerod:
container_name: wownero_daemon
container_name: wownerod_daemon
build:
context: dockerfiles
dockerfile: wownerod_nocompile
@ -68,3 +79,4 @@ services:
- 0.0.0.0:34567:34567
- 0.0.0.0:34568:34568
- 127.0.0.1:34570:34570
<<: *log-config

@ -1,4 +1,4 @@
FROM ubuntu:21.04 as og
FROM ubuntu:22.04 as og
ENV DEBIAN_FRONTEND noninteractive
@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
build-essential cmake pkg-config libboost-all-dev \
libssl-dev libzmq3-dev libunbound-dev libsodium-dev libpgm-dev git
RUN git clone https://git.wownero.com/wownero/wownero --depth=1 --branch=v0.10.0.2 .
RUN git clone https://git.wownero.com/wownero/wownero --depth=1 --branch=v0.11.0.1 .
RUN make -j4

@ -0,0 +1,9 @@
FROM golang:bullseye
# Install exporter from Golang source
RUN go install github.com/cirocosta/monero-exporter/cmd/monero-exporter@master
# Install GeoLite database
RUN wget https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-City.mmdb -O /geoip.mmdb
ENTRYPOINT [ "monero-exporter", "--geoip-filepath", "/geoip.mmdb" ]

@ -10,9 +10,9 @@ RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y tar wget xz-utils
ENV WOWNERO_HASH d9402ca2a71809c51499aab41772ef5052cd5a84256883e88997a5ab7a00c848
ENV WOWNERO_DL_URL https://git.wownero.com/attachments/c7ead1fb-49ca-4abe-9d5f-51c942e353ba
ENV WOWNERO_DL_FILE wownero.tar.xz
ENV WOWNERO_HASH a011cd6b637f5ed7298b03daa9b6ba239143e14626a4da567e2a0943d69f4c61
ENV WOWNERO_DL_URL https://git.wownero.com/attachments/64602dc5-5906-4600-89ef-9b4c0bdc0980
ENV WOWNERO_DL_FILE wownero.tar.bz2
ENV WOWNERO_SUMS_FILE sha256sums
WORKDIR /opt/wownero

File diff suppressed because it is too large Load Diff

@ -0,0 +1,29 @@
[analytics]
reporting_enabled = false
check_for_updates = false
[auth]
disable_login_form = false
; [auth.anonymous]
; enabled = true
; org_role = Admin
[dashboards]
min_refresh_interval = 1m
default_home_dashboard_path = /var/lib/grafana/dashboards/node_dashboard.json
[paths]
provisioning = /etc/grafana/provisioning
[server]
root_url = https://127.0.0.1
enable_gzip = true
read_timeout = 2m
[snapshots]
external_enabled = false
[security]
admin_user = admin
admin_password = admin

@ -0,0 +1,12 @@
apiVersion: 1
providers:
- name: 'fs'
orgId: 1
folder: ''
type: 'file'
updateIntervalSeconds: 30
allowUiUpdates: true
options:
path: '/var/lib/grafana/dashboards'
foldersFromFilesStructure: true

@ -0,0 +1,12 @@
apiVersion: 1
datasources:
- name: prometheus
type: prometheus
access: proxy
orgId: 1
url: http://prometheus:9090
isDefault: true
version: 1
editable: false
timeInterval: 30s

@ -0,0 +1,9 @@
global:
scrape_interval: 10s
evaluation_interval: 10s
external_labels:
monitor: wownerod-exporter
scrape_configs:
- job_name: "wownerod"
static_configs:
- targets: ["exporter:9000"]

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Before

Width:  |  Height:  |  Size: 716 KiB

After

Width:  |  Height:  |  Size: 716 KiB

@ -1,16 +0,0 @@
FROM ubuntu:19.10
RUN \
apt-get update \
&& apt-get install -y git build-essential cmake libuv1-dev libssl-dev libhwloc-dev \
&& git clone https://github.com/xmrig/xmrig.git /root/xmrig \
&& mkdir /root/xmrig/build \
&& cd /root/xmrig/build \
&& cmake .. \
&& make
COPY start_mining .
RUN chmod +x start_mining
ENTRYPOINT ["./start_mining"]

@ -1,16 +0,0 @@
# Miner
This is a quick and dirty implementation. There's some hardcoded choices in there until I go back and update it or someone makes a PR.
```
# build container image of xmrig (mining software)
docker build -t miner .
# run simple wow miner
docker run --rm -d --name miner miner <your wow address>
# run big monero miner
docker run --rm -d --name miner miner <your xmr address> xmr 8
```
See [start_mining](./start_mining) for details of inputs.

@ -1,29 +0,0 @@
#!/bin/bash
set -xe
RECV_ADDR=${1}
SYMBOL=${2:-wow}
THREADS=${3:-2}
if [[ "${SYMBOL}" == "wow" ]]; then
ALGO="rx/wow"
CRYPTO="wownero"
URL=cryptonote.social:2222
ADDRESS=${RECV_ADDR}
elif [[ "${SYMBOL}" == "xmr" ]]; then
ALGO="rx/0"
CRYPTO="monero"
URL=pool.supportxmr.com:3333
ADDRESS=${RECV_ADDR}
fi
/root/xmrig/build/xmrig \
--donate-level 1 \
--url=${URL} \
--user=${ADDRESS} \
--pass=$HOSTNAME \
--algo=${ALGO} \
--keepalive \
--print-time=10 \
--threads=${THREADS}

@ -1,3 +0,0 @@
data
.env
docker-compose.prod.yaml

@ -1,58 +0,0 @@
# 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.
![](files/static/wownerod-grafana.png)
## 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
```

@ -1,11 +0,0 @@
FROM node:8
WORKDIR /opt/wownerod_exporter
RUN git clone https://github.com/lalanza808/monerod_exporter.git --branch=master --depth=1 .
RUN npm install
EXPOSE 8080
ENTRYPOINT ["node", "index.js"]

@ -1,611 +0,0 @@
{
"annotations": {
"list": [
{
"builtIn": 1,
"datasource": "-- Grafana --",
"enable": true,
"hide": true,
"iconColor": "rgba(0, 211, 255, 1)",
"name": "Annotations & Alerts",
"type": "dashboard"
}
]
},
"editable": true,
"gnetId": null,
"graphTooltip": 0,
"id": 1,
"links": [],
"panels": [
{
"aliasColors": {},
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": null,
"fill": 0,
"fillGradient": 0,
"gridPos": {
"h": 9,
"w": 18,
"x": 0,
"y": 0
},
"hiddenSeries": false,
"id": 4,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 1,
"nullPointMode": "connected",
"options": {
"dataLinks": []
},
"percentage": false,
"pointradius": 2,
"points": false,
"renderer": "flot",
"seriesOverrides": [],
"spaceLength": 10,
"stack": false,
"steppedLine": false,
"targets": [
{
"expr": "avg(monerod_connections_incoming)",
"intervalFactor": 1,
"legendFormat": "Incoming",
"refId": "A"
},
{
"expr": "avg(monerod_connections_outgoing)",
"intervalFactor": 1,
"legendFormat": "Outgoing",
"refId": "B"
},
{
"expr": "avg(monerod_rpc_connections_count)",
"intervalFactor": 1,
"legendFormat": "RPC",
"refId": "C"
}
],
"thresholds": [],
"timeFrom": null,
"timeRegions": [],
"timeShift": null,
"title": "Connections",
"tooltip": {
"shared": true,
"sort": 0,
"value_type": "individual"
},
"type": "graph",
"xaxis": {
"buckets": null,
"mode": "time",
"name": null,
"show": true,
"values": []
},
"yaxes": [
{
"decimals": null,
"format": "none",
"label": null,
"logBase": 1,
"max": null,
"min": "0",
"show": true
},
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
}
],
"yaxis": {
"align": false,
"alignLevel": null
}
},
{
"aliasColors": {},
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": null,
"fill": 0,
"fillGradient": 0,
"gridPos": {
"h": 9,
"w": 6,
"x": 18,
"y": 0
},
"hiddenSeries": false,
"id": 8,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": false,
"total": false,
"values": false
},
"lines": true,
"linewidth": 1,
"nullPointMode": "connected",
"options": {
"dataLinks": []
},
"percentage": false,
"pointradius": 2,
"points": false,
"renderer": "flot",
"seriesOverrides": [
{
"alias": "/.*/",
"color": "#FA6400"
}
],
"spaceLength": 10,
"stack": false,
"steppedLine": false,
"targets": [
{
"expr": "avg(monerod_block_reward) * 10",
"intervalFactor": 1,
"legendFormat": "Block Reward (WOW)",
"refId": "A"
}
],
"thresholds": [],
"timeFrom": null,
"timeRegions": [],
"timeShift": null,
"title": "Block Reward (WOW)",
"tooltip": {
"shared": true,
"sort": 0,
"value_type": "individual"
},
"type": "graph",
"xaxis": {
"buckets": null,
"mode": "time",
"name": null,
"show": true,
"values": []
},
"yaxes": [
{
"decimals": null,
"format": "none",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
},
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": false
}
],
"yaxis": {
"align": false,
"alignLevel": null
}
},
{
"aliasColors": {},
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": null,
"fill": 0,
"fillGradient": 0,
"gridPos": {
"h": 9,
"w": 12,
"x": 0,
"y": 9
},
"hiddenSeries": false,
"id": 6,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": false,
"total": false,
"values": false
},
"lines": true,
"linewidth": 1,
"nullPointMode": "connected",
"options": {
"dataLinks": []
},
"percentage": false,
"pointradius": 2,
"points": false,
"renderer": "flot",
"seriesOverrides": [
{
"alias": "/.*/",
"color": "#8F3BB8"
}
],
"spaceLength": 10,
"stack": false,
"steppedLine": false,
"targets": [
{
"expr": "avg(monerod_tx_mempool)",
"interval": "",
"intervalFactor": 1,
"legendFormat": "Pool Transactions",
"refId": "A"
}
],
"thresholds": [],
"timeFrom": null,
"timeRegions": [],
"timeShift": null,
"title": "Mempool Transactions",
"tooltip": {
"shared": true,
"sort": 0,
"value_type": "individual"
},
"type": "graph",
"xaxis": {
"buckets": null,
"mode": "time",
"name": null,
"show": true,
"values": []
},
"yaxes": [
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
},
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
}
],
"yaxis": {
"align": false,
"alignLevel": null
}
},
{
"aliasColors": {},
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": null,
"fill": 0,
"fillGradient": 0,
"gridPos": {
"h": 9,
"w": 12,
"x": 12,
"y": 9
},
"hiddenSeries": false,
"id": 2,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": false,
"total": false,
"values": false
},
"lines": true,
"linewidth": 1,
"nullPointMode": "connected",
"options": {
"dataLinks": []
},
"percentage": false,
"pointradius": 2,
"points": false,
"renderer": "flot",
"seriesOverrides": [
{
"alias": "/.*/",
"color": "#C4162A"
}
],
"spaceLength": 10,
"stack": false,
"steppedLine": false,
"targets": [
{
"expr": "avg(monerod_block_difficulty)",
"intervalFactor": 1,
"refId": "A"
}
],
"thresholds": [],
"timeFrom": null,
"timeRegions": [],
"timeShift": null,
"title": "Difficulty",
"tooltip": {
"shared": true,
"sort": 0,
"value_type": "individual"
},
"type": "graph",
"xaxis": {
"buckets": null,
"mode": "time",
"name": null,
"show": true,
"values": []
},
"yaxes": [
{
"format": "none",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
},
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
}
],
"yaxis": {
"align": false,
"alignLevel": null
}
},
{
"aliasColors": {},
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": null,
"fill": 0,
"fillGradient": 0,
"gridPos": {
"h": 8,
"w": 20,
"x": 0,
"y": 18
},
"hiddenSeries": false,
"id": 12,
"legend": {
"avg": false,
"current": false,
"max": false,
"min": false,
"show": true,
"total": false,
"values": false
},
"lines": true,
"linewidth": 1,
"nullPointMode": "null",
"options": {
"dataLinks": []
},
"percentage": false,
"pointradius": 2,
"points": false,
"renderer": "flot",
"seriesOverrides": [
{
"alias": "/.*/",
"color": "#1F60C4"
}
],
"spaceLength": 10,
"stack": false,
"steppedLine": false,
"targets": [
{
"expr": "monerod_database_size",
"intervalFactor": 1,
"legendFormat": "Chain Size",
"refId": "A"
}
],
"thresholds": [],
"timeFrom": null,
"timeRegions": [],
"timeShift": null,
"title": "Chain Size",
"tooltip": {
"shared": true,
"sort": 0,
"value_type": "individual"
},
"type": "graph",
"xaxis": {
"buckets": null,
"mode": "time",
"name": null,
"show": true,
"values": []
},
"yaxes": [
{
"format": "decbytes",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
},
{
"format": "short",
"label": null,
"logBase": 1,
"max": null,
"min": null,
"show": true
}
],
"yaxis": {
"align": false,
"alignLevel": null
}
},
{
"cacheTimeout": null,
"colorBackground": false,
"colorPostfix": false,
"colorPrefix": false,
"colorValue": false,
"colors": [
"#299c46",
"rgba(237, 129, 40, 0.89)",
"#d44a3a"
],
"datasource": null,
"format": "none",
"gauge": {
"maxValue": 100,
"minValue": 0,
"show": false,
"thresholdLabels": false,
"thresholdMarkers": true
},
"gridPos": {
"h": 8,
"w": 4,
"x": 20,
"y": 18
},
"id": 10,
"interval": null,
"links": [],
"mappingType": 1,
"mappingTypes": [
{
"name": "value to text",
"value": 1
},
{
"name": "range to text",
"value": 2
}
],
"maxDataPoints": 100,
"nullPointMode": "connected",
"nullText": null,
"options": {},
"postfix": "",
"postfixFontSize": "50%",
"prefix": "",
"prefixFontSize": "50%",
"rangeMaps": [
{
"from": "null",
"text": "N/A",
"to": "null"
}
],
"sparkline": {
"fillColor": "rgba(31, 118, 189, 0.18)",
"full": false,
"lineColor": "rgb(31, 120, 193)",
"show": false,
"ymax": null,
"ymin": null
},
"tableColumn": "",
"targets": [
{
"expr": "avg(monerod_tx_chain)",
"instant": true,
"refId": "A"
}
],
"thresholds": "",
"timeFrom": null,
"timeShift": null,
"title": "Total Transactions",
"type": "singlestat",
"valueFontSize": "100%",
"valueMaps": [
{
"op": "=",
"text": "N/A",
"value": "null"
}
],
"valueName": "current"
}
],
"refresh": "30s",
"schemaVersion": 21,
"style": "dark",
"tags": [],
"templating": {
"list": []
},
"time": {
"from": "now-90d",
"to": "now"
},
"timepicker": {
"refresh_intervals": [
"5s",
"10s",
"30s",
"1m",
"5m",
"15m",
"30m",
"1h",
"2h",
"1d"
]
},
"timezone": "",
"title": "Daemon Stats",
"uid": "0ktA4KDGk",
"version": 5
}

@ -1,13 +0,0 @@
apiVersion: 1
providers:
- name: 'default'
orgId: 1
folder: ''
type: file
disableDeletion: true
editable: true
updateIntervalSeconds: 60
allowUiUpdates: true
options:
path: /var/lib/grafana/dashboards

@ -1,9 +0,0 @@
apiVersion: 1
datasources:
- name: Prometheus
type: prometheus
url: http://prometheus:9090
access: proxy
isDefault: true
timeInterval: 10s

@ -1,17 +0,0 @@
global:
scrape_interval: 30s
evaluation_interval: 60s
external_labels:
monitor: wownerod-exporter
scrape_configs:
- job_name: "wownerod-exporter"
static_configs:
- targets: ["exporter:8080"]
alerting:
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
Loading…
Cancel
Save