btcpayserver/BTCPayServer.Tests/docker-compose.monero.yml

29 lines
1.3 KiB
YAML
Raw Normal View History

2019-09-30 10:32:43 +02:00
version: "3"
services:
monerod:
2020-02-19 21:43:10 +01:00
image: btcpayserver/monero:0.15.0.1-amd64
2019-09-30 10:32:43 +02:00
restart: unless-stopped
container_name: xmr_monerod
2020-02-19 21:43:10 +01:00
entrypoint: sleep 999999
# entrypoint: monerod --fixed-difficulty 200 --rpc-bind-ip=0.0.0.0 --confirm-external-bind --rpc-bind-port=18081 --block-notify="/bin/sh ./scripts/notifier.sh -k -X GET https://host.docker.internal:14142/monerolikedaemoncallback/block?cryptoCode=xmr&hash=%s" --testnet --no-igd --hide-my-port --offline
2019-09-30 10:32:43 +02:00
volumes:
- "monero_data:/home/monero/.bitmonero"
ports:
- "18081:18081"
monero_wallet:
2020-02-19 21:43:10 +01:00
image: btcpayserver/monero:0.15.0.1-amd64
2019-09-30 10:32:43 +02:00
restart: unless-stopped
container_name: xmr_wallet_rpc
2020-02-19 21:43:10 +01:00
entrypoint: monero-wallet-rpc --testnet --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.keys --password-file=/wallet/password --tx-notify="/bin/sh ./scripts/notifier.sh -k -X GET https://host.docker.internal:14142/monerolikedaemoncallback/tx?cryptoCode=xmr&hash=%s"
2019-09-30 10:32:43 +02:00
ports:
- "18082:18082"
volumes:
2020-02-19 21:43:10 +01:00
- "./monero_wallet:/wallet"
2019-09-30 10:32:43 +02:00
depends_on:
- monerod
volumes:
monero_data: