-
Notifications
You must be signed in to change notification settings - Fork 364
/
dogecoin.yml
39 lines (38 loc) · 1.13 KB
/
dogecoin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: "3"
services:
dogecoind:
restart: unless-stopped
container_name: btcpayserver_dogecoind
image: btcpayserver/dogecoin:1.14.7
environment:
DOGECOIN_EXTRA_ARGS: |
rpcuser=ceiwHEbqWI83
rpcpassword=DwubwWsoo3
${NBITCOIN_NETWORK:-regtest}=1
server=1
rpcport=22555
port=22556
whitelist=0.0.0.0/0
# Reducing memory usage of dogecoind. Don't try running this container without at least 2 GB of memory
# https://www.reddit.com/r/dogecoin/comments/5wynqe/reducing_memory_usage_of_dogecoind/
dbcache=50
expose:
- "22555" # RPC
- "22556" # P2P
volumes:
- "dogecoin_datadir:/data"
nbxplorer:
environment:
NBXPLORER_CHAINS: "doge"
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
volumes:
- "dogecoin_datadir:/root/.dogecoin"
btcpayserver:
environment:
BTCPAY_CHAINS: "doge"
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
volumes:
dogecoin_datadir: