mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 21:10:42 +02:00
Upgrade Lightning Terminal to v0.9.2 (#781)
* Upgrade Lightning Terminal to v0.9.2 * Fix LiT datadir Closes #787. * nginx: Fix LiT location
This commit is contained in:
parent
f0e0b2cf11
commit
cc658a9a9e
@ -146,7 +146,7 @@
|
||||
{{ end }}
|
||||
|
||||
{{ if (eq $serviceName "lnd_lit") }}
|
||||
location /lit {
|
||||
location /lit/ {
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
@ -390,7 +390,7 @@ Note that BTCPayServer developers will not spend excessive time testing your ima
|
||||
| podcastindexorg/podcasting20-helipad | v0.1.10 | [✔️](https://raw.githubusercontent.com/Podcastindex-org/helipad/v0.1.10/umbrel/Dockerfile) | [✔️](https://raw.githubusercontent.com/Podcastindex-org/helipad/v0.1.10/umbrel/Dockerfile) | [✔️](https://raw.githubusercontent.com/Podcastindex-org/helipad/v0.1.10/umbrel/Dockerfile) | [Github](https://github.com/Podcastindex-org/helipad) - [DockerHub](https://hub.docker.com/r/podcastindexorg/podcasting20-helipad) |
|
||||
| jvandrew/librepatron | 0.7.39 | [✔️](https://raw.githubusercontent.com/JeffVandrewJr/patron/v0.7.39/Dockerfile) | ️❌ | ️❌ | [Github](https://github.com/JeffVandrewJr/patron) - [DockerHub](https://hub.docker.com/r/jvandrew/librepatron) |
|
||||
| jvandrew/isso | atron.22 | [✔️](https://raw.githubusercontent.com/JeffVandrewJr/isso/patron.22/Dockerfile) | ️❌ | ️❌ | [Github](https://github.com/JeffVandrewJr/isso) - [DockerHub](https://hub.docker.com/r/jvandrew/isso) |
|
||||
| lightninglabs/lightning-terminal | v0.8.6-alpha-path-prefix | [✔️](https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.8.6-alpha/Dockerfile) | ️❌ | [✔️](https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.8.6-alpha/Dockerfile) | [Github](https://github.com/lightninglabs/lightning-terminal) - [DockerHub](https://hub.docker.com/r/lightninglabs/lightning-terminal) |
|
||||
| lightninglabs/lightning-terminal | v0.9.2-alpha-path-prefix | [✔️](https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.9.2-alpha/Dockerfile) | ️❌ | [✔️](https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.9.2-alpha/Dockerfile) | [Github](https://github.com/lightninglabs/lightning-terminal) - [DockerHub](https://hub.docker.com/r/lightninglabs/lightning-terminal) |
|
||||
| mempool/frontend | v2.5.0-dev1 | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile) | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile) | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile) | [Github](https://github.com/mempool/mempool) - [DockerHub](https://hub.docker.com/r/mempool/frontend) |
|
||||
| mempool/backend | v2.5.0-dev1 | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile) | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile) | [✔️](https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile) | [Github](https://github.com/mempool/mempool) - [DockerHub](https://hub.docker.com/r/mempool/backend) |
|
||||
| mariadb | 10.5.8 | [✔️](https://raw.githubusercontent.com/docker-library/mariadb/master/10.5/Dockerfile) | ️❌ | ️❌ | [Github](https://github.com/docker-library/mariadb) - [DockerHub](https://hub.docker.com/_/mariadb) |
|
||||
|
@ -709,7 +709,7 @@ DOCKERFILE="Dockerfile"
|
||||
echo "Building fireflyiii/core:latest"
|
||||
git clone https://dev.azure.com/Firefly-III/_git/MainImage core
|
||||
cd core
|
||||
git checkout
|
||||
git checkout
|
||||
cd "$(dirname $DOCKERFILE)"
|
||||
docker build -f "$DOCKERFILE" -t "fireflyiii/core:latest" .
|
||||
cd - && cd ..
|
||||
@ -772,16 +772,16 @@ cd - && cd ..
|
||||
|
||||
|
||||
# Build lightning-terminal
|
||||
# https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.8.6-alpha/Dockerfile
|
||||
# https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.9.2-alpha/Dockerfile
|
||||
DOCKERFILE="Dockerfile"
|
||||
# https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.8.6-alpha/Dockerfile
|
||||
# https://raw.githubusercontent.com/lightninglabs/lightning-terminal/v0.9.2-alpha/Dockerfile
|
||||
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
|
||||
echo "Building lightninglabs/lightning-terminal:v0.8.6-alpha-path-prefix"
|
||||
echo "Building lightninglabs/lightning-terminal:v0.9.2-alpha-path-prefix"
|
||||
git clone https://github.com/lightninglabs/lightning-terminal lightning-terminal
|
||||
cd lightning-terminal
|
||||
git checkout v0.8.6-alpha
|
||||
git checkout v0.9.2-alpha
|
||||
cd "$(dirname $DOCKERFILE)"
|
||||
docker build -f "$DOCKERFILE" -t "lightninglabs/lightning-terminal:v0.8.6-alpha-path-prefix" .
|
||||
docker build -f "$DOCKERFILE" -t "lightninglabs/lightning-terminal:v0.9.2-alpha-path-prefix" .
|
||||
cd - && cd ..
|
||||
|
||||
|
||||
@ -1209,5 +1209,3 @@ git checkout master
|
||||
cd "$(dirname $DOCKERFILE)"
|
||||
docker build -f "$DOCKERFILE" -t "romanornr/docker-viacoin:0.15.2" .
|
||||
cd - && cd ..
|
||||
|
||||
|
||||
|
@ -8,12 +8,12 @@ services:
|
||||
LND_EXTRA_ARGS: |
|
||||
rpcmiddleware.enable=true
|
||||
lnd_lit:
|
||||
image: "lightninglabs/lightning-terminal:v0.8.6-alpha-path-prefix"
|
||||
image: "lightninglabs/lightning-terminal:v0.9.2-alpha-path-prefix"
|
||||
restart: unless-stopped
|
||||
expose:
|
||||
- "8080"
|
||||
volumes:
|
||||
- "lnd_lit_datadir:/root/.lnd"
|
||||
- "lnd_lit_datadir:/root/.lit"
|
||||
- "lnd_bitcoin_datadir:/data/lnd:ro"
|
||||
links:
|
||||
- bitcoind
|
||||
|
Loading…
Reference in New Issue
Block a user