Update Mempool to v2.5.0 (#474)

This commit is contained in:
Felipe Knorr Kuhn 2023-04-04 23:02:09 -07:00 committed by GitHub
parent 1121694691
commit 6babf8eea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 8 deletions

View File

@ -7,7 +7,7 @@ services:
APP_PORT: $APP_MEMPOOL_PORT
PROXY_AUTH_ADD: "false"
web:
image: mempool/frontend:v2.4.0@sha256:f71722f1e3abfb3d8a3df6f2a32e384d39434e311bb83d810629077b4fa6ffaf
image: mempool/frontend:v2.5.0@sha256:559b4542fc414a28db69bbda143e6be1c404e3f1b637c9e6f30526c10f4c75a7
user: "1000:1000"
init: true
restart: on-failure
@ -16,11 +16,14 @@ services:
environment:
FRONTEND_HTTP_PORT: $APP_MEMPOOL_PORT
BACKEND_MAINNET_HTTP_HOST: $APP_MEMPOOL_API_IP
NGINX_PORT: $APP_MEMPOOL_PORT
NGINX_HOSTNAME: $APP_MEMPOOL_API_IP
LIGHTNING_DETECTED_PORT: $APP_LIGHTNING_NODE_PORT
networks:
default:
ipv4_address: $APP_MEMPOOL_IP
api:
image: mempool/backend:v2.4.0@sha256:6036cc6866b782efadc765e8189958940202b3fa1770eb35c35210c86efd2f47
image: mempool/backend:v2.5.0@sha256:c58996a3bfd382cb782da5d93e4b8f65f9c02c7a6bb10df4dda0bdf52ba8ed88
user: "1000:1000"
init: true
restart: on-failure
@ -28,6 +31,7 @@ services:
command: "./wait-for-it.sh mariadb:3306 --timeout=720 --strict -- ./start.sh"
volumes:
- ${APP_DATA_DIR}/data:/backend/cache
- ${UMBREL_ROOT}/app-data/lightning/data/lnd:/lnd:ro
environment:
CORE_RPC_HOST: $APP_BITCOIN_NODE_IP
CORE_RPC_PORT: $APP_BITCOIN_RPC_PORT
@ -46,6 +50,14 @@ services:
MEMPOOL_CLEAR_PROTECTION_MINUTES: "20"
MEMPOOL_INDEXING_BLOCKS_AMOUNT: "52560"
MEMPOOL_STDOUT_LOG_MIN_PRIORITY: "info"
LIGHTNING_ENABLED: "true"
LIGHTNING_BACKEND: "lnd"
LIGHTNING_STATS_REFRESH_INTERVAL: 3600
LIGHTNING_GRAPH_REFRESH_INTERVAL: 3600
LND_TLS_CERT_PATH: "/lnd/tls.cert"
LND_MACAROON_PATH: "/lnd/data/chain/bitcoin/$APP_BITCOIN_NETWORK/readonly.macaroon"
LND_REST_API_URL: "https://$APP_LIGHTNING_NODE_IP:$APP_LIGHTNING_NODE_REST_PORT"
LND_TIMEOUT: 120000
networks:
default:
ipv4_address: $APP_MEMPOOL_API_IP

View File

@ -2,16 +2,20 @@ manifestVersion: 1
id: mempool
category: Explorers
name: mempool
version: "2.4.0-build-2"
version: "2.5.0"
tagline: A self-hosted explorer for the Bitcoin community
description: >-
Trusted third parties are security holes. Self-host your own
instance of mempool.space on Umbrel for maximum privacy.
Features:
This app has a Lightning explorer, but you need to install the
Lightning Node app on your Umbrel first. If you install it after
Mempool, restart your Umbrel for the Lightning explorer to work.
Features:
- Live dashboard visualizing the mempool and blockchain
- Live transaction tracking
@ -29,10 +33,12 @@ description: >-
- Audio notifications on transaction confirmed and address balance change
- Multiple languages support
- Lightning explorer (when the Lightning Node app is installed)
- JSON APIs
releaseNotes: >-
This update allows the Lightning Node app to open its Bitcoin wallet (on-chain) transactions on your local mempool.
This update allows users to use the Lightning explorer if the Lightning Node app is installed.
developer: Mempool Space K.K.
website: https://mempool.space/about
dependencies:
@ -48,5 +54,6 @@ gallery:
path: ""
defaultUsername: ""
defaultPassword: ""
submitter: Bastien Guillaumat
submission: https://github.com/getumbrel/umbrel/pull/470
submitter: Mempool Space K.K.
submission: https://github.com/getumbrel/umbrel/pull/470