mirror of
https://github.com/getumbrel/umbrel-apps.git
synced 2024-11-12 00:19:17 +00:00
19 lines
678 B
YAML
19 lines
678 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: circuitbreaker_web_1
|
|
APP_PORT: 9235
|
|
|
|
web:
|
|
image: ghcr.io/lightningequipment/circuitbreaker:v0.4.3@sha256:b8e0505da638ff47d69f0c3af8140d82dde970dadadf5949565426c4f3c9ded9
|
|
user: "1000:1000"
|
|
restart: on-failure
|
|
stop_grace_period: 1m
|
|
init: true
|
|
volumes:
|
|
- ${APP_LIGHTNING_NODE_DATA_DIR}:/data/.lnd:ro
|
|
- ${APP_DATA_DIR}/data:/data/.circuitbreaker
|
|
command: [ "--configdir=/data/.circuitbreaker", "--network=${APP_BITCOIN_NETWORK}", "--lnddir=/data/.lnd", "--rpcserver=${APP_LIGHTNING_NODE_IP}:${APP_LIGHTNING_NODE_GRPC_PORT}", "--httplisten=0.0.0.0:9235" ]
|