mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
936 B
27 lines
936 B
version: "3.7"
|
|
|
|
services:
|
|
web:
|
|
image: lightninglabs/lightning-terminal:v0.6.1-alpha@sha256:cb1af6b972b7fa686886ace5794c4d56dda8f96cacda677b4601518e02b8b894
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
ports:
|
|
- "$APP_LIGHTNING_TERMINAL_PORT:$APP_LIGHTNING_TERMINAL_PORT"
|
|
volumes:
|
|
- ${APP_DATA_DIR}/data:/data
|
|
- ${LND_DATA_DIR}:/lnd:ro
|
|
environment:
|
|
HOME: "/data"
|
|
APP_PASSWORD: "$APP_PASSWORD"
|
|
command:
|
|
- --uipassword_env=APP_PASSWORD
|
|
- --insecure-httplisten=0.0.0.0:$APP_LIGHTNING_TERMINAL_PORT
|
|
- --network="$BITCOIN_NETWORK"
|
|
- --lnd-mode="remote"
|
|
- --remote.lnd.rpcserver=$LND_IP:$LND_GRPC_PORT
|
|
- --remote.lnd.macaroonpath="/lnd/data/chain/bitcoin/$BITCOIN_NETWORK/admin.macaroon"
|
|
- --remote.lnd.tlscertpath="/lnd/tls.cert"
|
|
networks:
|
|
default:
|
|
ipv4_address: $APP_LIGHTNING_TERMINAL_IP
|
|
|