Files
archy/apps/lnd/manifest.yml
T

81 lines
2.1 KiB
YAML
Raw Normal View History

2026-01-24 22:01:51 +00:00
app:
id: lnd
name: LND
version: 0.18.4
2026-01-24 22:01:51 +00:00
description: Lightning Network implementation by Lightning Labs. Enables instant, low-cost Bitcoin payments.
2026-01-24 22:01:51 +00:00
container:
image: 146.59.87.168:3000/lfg2025/lnd:v0.18.4-beta
pull_policy: if-not-present
network: archy-net
# BITCOIND_HOST must follow the node's actual Bitcoin container — Knots or
# Core — resolved at apply time from host facts. Hardcoding either breaks
# LND's chain backend connection on the other (lnd.conf is likewise
# resolved in lnd::ensure_config).
derived_env:
- key: BITCOIND_HOST
template: "{{BITCOIN_HOST}}"
secret_env:
- key: BITCOIND_RPCPASS
secret_file: bitcoin-rpc-password
data_uid: "100000:100000"
2026-01-24 22:01:51 +00:00
dependencies:
- app_id: bitcoin-core
version: ">=26.0"
2026-01-24 22:01:51 +00:00
resources:
cpu_limit: 2
memory_limit: 1Gi
disk_limit: 10Gi
2026-01-24 22:01:51 +00:00
security:
capabilities: [CHOWN, FOWNER, SETUID, SETGID, DAC_OVERRIDE, NET_RAW]
readonly_root: false
2026-01-24 22:01:51 +00:00
network_policy: isolated
2026-01-24 22:01:51 +00:00
ports:
- host: 9735
container: 9735
protocol: tcp
auth: none
auth_rationale: >-
Lightning p2p. The BOLT-8 noise handshake authenticates and encrypts the channel itself.
2026-01-24 22:01:51 +00:00
- host: 10009
container: 10009
protocol: tcp
auth: none
auth_rationale: >-
LND gRPC, authenticated by macaroon over TLS. Zeus and other remote wallets depend on reaching this directly.
2026-05-13 15:09:22 -04:00
- host: 18080
2026-01-24 22:01:51 +00:00
container: 8080
protocol: tcp
auth: none
auth_rationale: >-
LND REST, authenticated by macaroon over TLS. A browser login page would break Zeus and every non-browser wallet client.
2026-01-24 22:01:51 +00:00
volumes:
- type: bind
source: /var/lib/archipelago/lnd
target: /root/.lnd
options: [rw]
2026-01-24 22:01:51 +00:00
environment:
- BITCOIND_RPCUSER=archipelago
2026-01-24 22:01:51 +00:00
- NETWORK=mainnet
2026-01-24 22:01:51 +00:00
health_check:
type: tcp
endpoint: localhost:10009
2026-01-24 22:01:51 +00:00
interval: 30s
timeout: 5s
retries: 3
2026-01-24 22:01:51 +00:00
bitcoin_integration:
rpc_access: admin
sync_required: true
2026-01-24 22:01:51 +00:00
lightning_integration:
channel_management: true
payment_routing: true