You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
829 B
28 lines
829 B
version: "3"
|
|
|
|
services:
|
|
|
|
btcpayserver:
|
|
restart: unless-stopped
|
|
image: ${BTCPAY_IMAGE:-nicolasdorier/btcpayserver:1.0.3.9}
|
|
expose:
|
|
- "49392"
|
|
environment:
|
|
# BTCPay settings
|
|
BTCPAY_POSTGRES: User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver${NBITCOIN_NETWORK:-regtest}
|
|
BTCPAY_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
|
BTCPAY_BIND: 0.0.0.0:49392
|
|
BTCPAY_EXTERNALURL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/
|
|
BTCPAY_ROOTPATH: ${BTCPAY_ROOTPATH:-/}
|
|
BTCPAY_SSHTRUSTEDFINGERPRINTS: ${BTCPAY_SSHTRUSTEDFINGERPRINTS}
|
|
BTCPAY_SSHKEYFILE: ${BTCPAY_SSHKEYFILE}
|
|
BTCPAY_DEBUGLOG: btcpay.log
|
|
links:
|
|
- nbxplorer
|
|
- postgres
|
|
volumes:
|
|
- "btcpay_datadir:/datadir"
|
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
|
|
|
volumes:
|
|
btcpay_datadir:
|