mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-11 16:09:18 +00:00
11f36560e8
Co-authored-by: Steven Briscoe <me@stevenbriscoe.com>
29 lines
900 B
YAML
29 lines
900 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: node-red_web_1
|
|
APP_PORT: 1880
|
|
# Used to allow (HTTP In) flows to be publicly exposed
|
|
PROXY_AUTH_WHITELIST: "/public/*"
|
|
|
|
web:
|
|
image: nodered/node-red:2.2.2-12@sha256:7b8e58892801f01af48acfb18c21b845a6f35029e7654ca6e19ba86bbe810d04
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/data
|
|
- ${APP_LIGHTNING_NODE_DATA_DIR}:/lnd:ro
|
|
environment:
|
|
PORT: 1880
|
|
BITCOIN_NETWORK: $APP_BITCOIN_NETWORK
|
|
BITCOIN_IP: $APP_BITCOIN_NODE_IP
|
|
BITCOIN_RPC_PORT: $APP_BITCOIN_RPC_PORT
|
|
BITCOIN_RPC_USER: $APP_BITCOIN_RPC_USER
|
|
BITCOIN_RPC_PASS: $APP_BITCOIN_RPC_PASS
|
|
LND_IP: $APP_LIGHTNING_NODE_IP
|
|
LND_GRPC_PORT: $APP_LIGHTNING_NODE_GRPC_PORT
|
|
ELECTRUM_IP: $APP_ELECTRS_NODE_IP
|
|
ELECTRUM_PORT: $APP_ELECTRS_NODE_PORT
|