Merge branch 'master' into dcg-latest
This commit is contained in:
@@ -33,7 +33,8 @@ With Powershell:
|
|||||||
$env:BTCPAY_ROOTPATH="/test";
|
$env:BTCPAY_ROOTPATH="/test";
|
||||||
$env:BTCPAY_PROTOCOL="http";
|
$env:BTCPAY_PROTOCOL="http";
|
||||||
$env:BTCPAY_HOST="btcpay.example.com";
|
$env:BTCPAY_HOST="btcpay.example.com";
|
||||||
docker-compose -f docker-compose.btc.yml up
|
.\build.ps1
|
||||||
|
docker-compose -f "Generated/docker-compose.generated.yml" up --remove-orphans -d
|
||||||
```
|
```
|
||||||
|
|
||||||
With Linux:
|
With Linux:
|
||||||
@@ -42,7 +43,8 @@ With Linux:
|
|||||||
export BTCPAY_ROOTPATH="/test"
|
export BTCPAY_ROOTPATH="/test"
|
||||||
export BTCPAY_PROTOCOL="http"
|
export BTCPAY_PROTOCOL="http"
|
||||||
export BTCPAY_HOST="btcpay.example.com"
|
export BTCPAY_HOST="btcpay.example.com"
|
||||||
docker-compose -f docker-compose.btc.yml up
|
./build.sh
|
||||||
|
docker-compose -f "Generated/docker-compose.generated.yml" up --remove-orphans -d
|
||||||
```
|
```
|
||||||
|
|
||||||
Then edit your [host file](https://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/) with
|
Then edit your [host file](https://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/) with
|
||||||
|
|||||||
@@ -302,7 +302,11 @@ server {
|
|||||||
{{ $serviceName := (index $container.Labels "com.docker.compose.service") }}
|
{{ $serviceName := (index $container.Labels "com.docker.compose.service") }}
|
||||||
{{ if (eq $serviceName "lnd_bitcoin") }}
|
{{ if (eq $serviceName "lnd_bitcoin") }}
|
||||||
location /lnrpc.Lightning {
|
location /lnrpc.Lightning {
|
||||||
grpc_pass grpcs://lnd_bitcoin:10009;
|
grpc_pass grpcs://lnd_bitcoin:10009;
|
||||||
|
}
|
||||||
|
location /lnd-rest/btc/ {
|
||||||
|
rewrite ^/lnd-rest/btc/(.*) /$1 break;
|
||||||
|
proxy_pass http://lnd_bitcoin:8080/;
|
||||||
}
|
}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -312,6 +312,8 @@ Yes, run the following commands to update:
|
|||||||
sudo su -
|
sudo su -
|
||||||
|
|
||||||
cd $DOWNLOAD_ROOT/btcpayserver-docker
|
cd $DOWNLOAD_ROOT/btcpayserver-docker
|
||||||
|
git checkout master
|
||||||
|
git pull
|
||||||
git checkout 9acb5d8067cb5c46f59858137feb699b41ac9f19
|
git checkout 9acb5d8067cb5c46f59858137feb699b41ac9f19
|
||||||
btcpay-update.sh
|
btcpay-update.sh
|
||||||
. ./btcpay-setup.sh -i
|
. ./btcpay-setup.sh -i
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
clightning_bitcoin:
|
clightning_bitcoin:
|
||||||
image: nicolasdorier/clightning:v0.6.1
|
image: nicolasdorier/clightning:v0.6.2
|
||||||
container_name: btcpayserver_clightning_bitcoin
|
container_name: btcpayserver_clightning_bitcoin
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -39,6 +39,7 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=http://lnd_bitcoin:8080/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;allowinsecure=true"
|
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=http://lnd_bitcoin:8080/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon;allowinsecure=true"
|
||||||
BTCPAY_BTCEXTERNALLNDGRPC: "type=lnd-grpc;server=${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon"
|
BTCPAY_BTCEXTERNALLNDGRPC: "type=lnd-grpc;server=${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon"
|
||||||
|
BTCPAY_BTCEXTERNALLNDREST: "type=lnd-rest;server=${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/lnd-rest/btc/;macaroonfilepath=/etc/lnd_bitcoin/admin.macaroon"
|
||||||
volumes:
|
volumes:
|
||||||
- "lnd_bitcoin_datadir:/etc/lnd_bitcoin"
|
- "lnd_bitcoin_datadir:/etc/lnd_bitcoin"
|
||||||
links:
|
links:
|
||||||
|
|||||||
@@ -4,11 +4,12 @@ services:
|
|||||||
bitcoind:
|
bitcoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_bitcoind
|
container_name: btcpayserver_bitcoind
|
||||||
image: nicolasdorier/docker-bitcoin:0.16.3
|
image: nicolasdorier/docker-bitcoin:0.17.0
|
||||||
environment:
|
environment:
|
||||||
|
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
|
deprecatedrpc=signrawtransaction
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
|
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: nicolasdorier/btcpayserver:1.0.2.106
|
image: nicolasdorier/btcpayserver:1.0.3.3
|
||||||
expose:
|
expose:
|
||||||
- "49392"
|
- "49392"
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
clightning_litecoin:
|
clightning_litecoin:
|
||||||
image: nicolasdorier/clightning:v0.6.1
|
image: nicolasdorier/clightning:v0.6.2
|
||||||
container_name: btcpayserver_clightning_litecoin
|
container_name: btcpayserver_clightning_litecoin
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
|
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: nicolasdorier/nbxplorer:1.0.2.31
|
image: nicolasdorier/nbxplorer:1.1.0.8
|
||||||
expose:
|
expose:
|
||||||
- "32838"
|
- "32838"
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ services:
|
|||||||
feathercoind:
|
feathercoind:
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: prune=25000
|
BITCOIN_EXTRA_ARGS: prune=25000
|
||||||
groestlcoind:
|
groestlcoind:
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: prune=25000
|
BITCOIN_EXTRA_ARGS: prune=25000
|
||||||
litecoind:
|
litecoind:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
viacoind:
|
viacoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_viacoind
|
container_name: btcpayserver_viacoind
|
||||||
image: romanornr/docker-viacoin:0.15.1
|
image: romanornr/docker-viacoin:0.15.2
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
|
|||||||
Reference in New Issue
Block a user