2022-04-20 20:32:07 +00:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
services:
|
2022-05-16 13:30:51 +00:00
|
|
|
app_proxy:
|
|
|
|
environment:
|
2022-12-04 20:18:22 +00:00
|
|
|
APP_HOST: node-red_web_1
|
|
|
|
APP_PORT: 1880
|
2022-06-21 14:12:29 +00:00
|
|
|
# Used to allow (HTTP In) flows to be publicly exposed
|
|
|
|
PROXY_AUTH_WHITELIST: "/public/*"
|
|
|
|
|
2022-04-20 20:32:07 +00:00
|
|
|
web:
|
2024-09-18 00:03:46 +00:00
|
|
|
image: nodered/node-red:4.0.3@sha256:55fc57012066ce49fc5615b83b558552ba464bbeaa299b688e11e51dc90b0fd7
|
2022-04-20 20:32:07 +00:00
|
|
|
restart: on-failure
|
|
|
|
stop_grace_period: 1m
|
|
|
|
volumes:
|
|
|
|
- ${APP_DATA_DIR}/data:/data
|
2022-05-27 10:14:11 +00:00
|
|
|
- ${APP_LIGHTNING_NODE_DATA_DIR}:/lnd:ro
|
2022-04-20 20:32:07 +00:00
|
|
|
environment:
|
2022-12-04 20:18:22 +00:00
|
|
|
PORT: 1880
|
2022-05-27 10:14:11 +00:00
|
|
|
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
|
2022-06-08 14:17:53 +00:00
|
|
|
LND_GRPC_PORT: $APP_LIGHTNING_NODE_GRPC_PORT
|
2022-05-27 10:14:11 +00:00
|
|
|
ELECTRUM_IP: $APP_ELECTRS_NODE_IP
|
2024-07-31 03:45:31 +00:00
|
|
|
ELECTRUM_PORT: $APP_ELECTRS_NODE_PORT
|