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.
21 lines
712 B
21 lines
712 B
2 years ago
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
app_proxy:
|
||
|
environment:
|
||
|
APP_HOST: lnplus_web_1
|
||
|
APP_PORT: "3777"
|
||
|
web:
|
||
|
image: lightningnetworkplus/lnpclient:v0.1.23@sha256:87812db57da64a223adfa7d3fe9f47e5f86a2900a40ba286f7bc572fc9a77a6d
|
||
|
restart: on-failure
|
||
|
stop_grace_period: 1m
|
||
|
volumes:
|
||
|
- ${APP_LIGHTNING_NODE_DATA_DIR}:/lnd:ro
|
||
|
environment:
|
||
|
LN_IMPLEMENTATION: "LND"
|
||
|
LN_SERVER_URL: $APP_LIGHTNING_NODE_IP:$APP_LIGHTNING_NODE_GRPC_PORT/
|
||
|
MACAROON_PATH: "/lnd/data/chain/bitcoin/$APP_BITCOIN_NETWORK/admin.macaroon"
|
||
|
CONFIG_PATH: "/lnd/lnd.conf"
|
||
|
CERTIFICATE_PATH: "/lnd/tls.cert"
|
||
|
API_URL: "https://lightningnetwork.plus/api/2/"
|
||
|
RAILS_ENV: "development"
|