mirror of
https://github.com/lalanza808/xmr.sh.git
synced 2025-05-31 17:44:22 -04:00
adding p2pool service
This commit is contained in:
parent
0b40c1521d
commit
290f00e2dc
2 changed files with 24 additions and 0 deletions
5
.env
5
.env
|
@ -26,6 +26,11 @@ TOR_HTTP_PORT=80
|
|||
EXPLORER_TAG=v0.17
|
||||
EXPLORER_PORT=8081
|
||||
|
||||
P2POOL_WALLET=
|
||||
P2POOL_STRATUM_PORT=3333
|
||||
P2POOL_P2P_PORT=37889
|
||||
P2POOL_PEERS=65.21.227.114:37889,node.sethforprivacy.com:37889
|
||||
|
||||
GRAFANA_TAG=8.5.4
|
||||
GF_SECURITY_ADMIN_PASSWORD=xmrsh-admin
|
||||
PROMETHEUS_TAG=v2.36.0
|
||||
|
|
|
@ -116,6 +116,24 @@ x-monero-exporter-service: &monero-exporter-service
|
|||
image: vdo1138/monero-exporter:0.0.2
|
||||
<<: *log-config
|
||||
|
||||
x-p2pool-service: &p2pool-service
|
||||
p2pool:
|
||||
image: sethsimmons/p2pool:latest
|
||||
restart: unless-stopped
|
||||
container_name: p2pool
|
||||
#tty: true
|
||||
#stdin_open: true
|
||||
volumes:
|
||||
- ./data/p2pool:/home/p2pool
|
||||
# - /dev/hugepages:/dev/hugepages:rw
|
||||
ports:
|
||||
- ${P2POOL_STRATUM_PORT}:${P2POOL_STRATUM_PORT}
|
||||
- ${P2POOL_P2P_PORT}:${P2POOL_P2P_PORT}
|
||||
command: >-
|
||||
--wallet "${P2POOL_WALLET}"
|
||||
--stratum "0.0.0.0:${P2POOL_STRATUM_PORT}" --p2p "0.0.0.0:${P2POOL_P2P_PORT}" --rpc-port "${MONEROD_RPC_PORT}"
|
||||
--addpeers "P2POOL_PEERS" --host "monerod"
|
||||
|
||||
x-grafana-service: &grafana-service
|
||||
grafana:
|
||||
user: "1000"
|
||||
|
@ -213,6 +231,7 @@ services:
|
|||
# <<: *explorer-service #!explorer
|
||||
# <<: *monero-lws-service #!lws
|
||||
# <<: *monero-exporter-service #!monero-exporter
|
||||
# <<: *p2pool-service #!p2pool
|
||||
# <<: *grafana-service #!grafana
|
||||
# <<: *prometheus-service #!prometheus
|
||||
# <<: *watchtower-service #!watchtower
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue