1
0

Bump Monero version and migrate to DNSBL (#419)

Co-authored-by: Seth Simmons <sethsimmons@users.noreply.github.com>
This commit is contained in:
Seth Simmons
2021-01-01 00:05:51 -05:00
committed by GitHub
parent bf26e45533
commit d71b64e934

View File

@@ -4,8 +4,8 @@ services:
monerod: monerod:
restart: unless-stopped restart: unless-stopped
container_name: btcpayserver_monerod container_name: btcpayserver_monerod
image: btcpayserver/monero:0.17.1.7 image: btcpayserver/monero:0.17.1.8
entrypoint: monerod --rpc-bind-ip=0.0.0.0 --confirm-external-bind --rpc-bind-port=18081 --non-interactive --block-notify="/bin/sh ./scripts/notifier.sh -X GET http://btcpayserver:49392/monerolikedaemoncallback/block?cryptoCode=xmr&hash=%s" --hide-my-port --prune-blockchain --ban-list=/home/monero/block.txt entrypoint: monerod --rpc-bind-ip=0.0.0.0 --confirm-external-bind --rpc-bind-port=18081 --non-interactive --block-notify="/bin/sh ./scripts/notifier.sh -X GET http://btcpayserver:49392/monerolikedaemoncallback/block?cryptoCode=xmr&hash=%s" --hide-my-port --prune-blockchain --enable-dns-blocklist
expose: expose:
- "18081" - "18081"
volumes: volumes:
@@ -13,7 +13,7 @@ services:
monerod_wallet: monerod_wallet:
restart: unless-stopped restart: unless-stopped
container_name: btcpayserver_monero_wallet container_name: btcpayserver_monero_wallet
image: btcpayserver/monero:0.17.1.7 image: btcpayserver/monero:0.17.1.8
entrypoint: monero-wallet-rpc --rpc-bind-ip=0.0.0.0 --disable-rpc-login --confirm-external-bind --rpc-bind-port=18082 --non-interactive --trusted-daemon --daemon-address=monerod:18081 --wallet-file=/wallet/wallet --password-file=/wallet/password --tx-notify="/bin/sh ./scripts/notifier.sh -X GET http://btcpayserver:49392/monerolikedaemoncallback/tx?cryptoCode=xmr&hash=%s" entrypoint: monero-wallet-rpc --rpc-bind-ip=0.0.0.0 --disable-rpc-login --confirm-external-bind --rpc-bind-port=18082 --non-interactive --trusted-daemon --daemon-address=monerod:18081 --wallet-file=/wallet/wallet --password-file=/wallet/password --tx-notify="/bin/sh ./scripts/notifier.sh -X GET http://btcpayserver:49392/monerolikedaemoncallback/tx?cryptoCode=xmr&hash=%s"
expose: expose:
- "18082" - "18082"