2022-02-09 19:13:45 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 Kilian Botrel
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-04-07 16:25:31 +00:00
|
|
|
# yaml-language-server: $schema=../../app-standard-v3.yml
|
|
|
|
|
|
|
|
version: 3
|
2022-02-09 19:13:45 +00:00
|
|
|
metadata:
|
|
|
|
category: Lightning Node Management
|
|
|
|
name: LNDg
|
2022-04-30 16:12:48 +00:00
|
|
|
version: 1.1.0
|
2022-02-13 22:09:38 +00:00
|
|
|
tagline: Lite GUI web interface to analyze LND data and manage your node with
|
|
|
|
automation.
|
|
|
|
description: LNDg is your command center for running a profitable and efficient
|
|
|
|
routing node. From quickly viewing your node's health, automated
|
|
|
|
rebalancing, selecting new potential peers and much more.
|
2022-04-30 16:12:48 +00:00
|
|
|
developers:
|
2022-04-09 20:00:56 +00:00
|
|
|
cryptosharks131: https://github.com/cryptosharks131
|
2022-02-09 19:13:45 +00:00
|
|
|
dependencies:
|
2022-02-13 22:09:38 +00:00
|
|
|
- lnd
|
2022-02-09 19:13:45 +00:00
|
|
|
repo: https://github.com/cryptosharks131/lndg
|
|
|
|
support: https://t.me/+-RxoZdi7snk2ZGYx
|
|
|
|
gallery:
|
2022-02-13 22:09:38 +00:00
|
|
|
- 1.jpg
|
|
|
|
- 2.jpg
|
|
|
|
- 3.jpg
|
|
|
|
path: ""
|
2022-02-09 19:13:45 +00:00
|
|
|
defaultPassword: $APP_SEED
|
|
|
|
containers:
|
|
|
|
- name: web
|
2022-04-30 16:12:48 +00:00
|
|
|
image: ghcr.io/cryptosharks131/lndg:v1.1.0@sha256:52801e42b35ef38dba0edd8e3a277cccfc93c08e9df50b54133ec476669b3c79
|
2022-02-09 19:13:45 +00:00
|
|
|
restart: on-failure
|
|
|
|
stop_grace_period: 1m
|
2022-04-07 16:25:31 +00:00
|
|
|
mounts:
|
|
|
|
lnd: /root/.lnd
|
2022-02-09 19:13:45 +00:00
|
|
|
data:
|
2022-02-09 19:44:12 +00:00
|
|
|
- data:/lndg/data
|
2022-02-09 19:13:45 +00:00
|
|
|
command:
|
|
|
|
- sh
|
|
|
|
- -c
|
2022-02-13 22:09:38 +00:00
|
|
|
- python initialize.py -net '${BITCOIN_NETWORK}' -server
|
|
|
|
'${LND_IP}:${LND_GRPC_PORT}' -pw '${APP_SEED}' -d && supervisord &&
|
|
|
|
python manage.py runserver 0.0.0.0:${APP_LNDG_WEB_PORT}
|