diff --git a/docker-compose.yml b/docker-compose.yml index 1a9637b..9b5815d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,7 +25,7 @@ services: BTCPAY_DOCKERDEPLOYMENT: 'true' BTCPAY_CHAINS: 'xmr' BTCPAY_XMR_DAEMON_URI: http://xmr-node.cakewallet.com:18081 - BTCPAY_XMR_WALLET_DAEMON_URI: http://monerod_wallet:18082 + BTCPAY_XMR_WALLET_DAEMON_URI: http://magic-monerod-wallet:18088 BTCPAY_XMR_WALLET_DAEMON_WALLETDIR: /root/xmr_wallet labels: traefik.enable: 'true' @@ -47,11 +47,9 @@ services: restart: unless-stopped container_name: magic-monerod-wallet image: btcpayserver/monero:0.18.3.3 - 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=xmr-node.cakewallet.com: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=18088 --non-interactive --trusted-daemon --daemon-address=xmr-node.cakewallet.com:18081 --wallet-file=/wallet/wallet --password-file /wallet/password --tx-notify="/bin/sh ./scripts/notifier.sh -X GET http://magic-btcpayserver:49392/monerolikedaemoncallback/tx?cryptoCode=xmr&hash=%s" expose: - - '18082' - ports: - - 18082:18082 + - '18088' volumes: - 'xmr_wallet:/wallet'